[slime-cvs] CVS update: slime/swank-loader.lisp

James Bielman jbielman at common-lisp.net
Sat Oct 18 05:06:45 UTC 2003


Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv12828

Modified Files:
	swank-loader.lisp 
Log Message:
(compile-files-if-needed-serially): Be a little
more verbose when compiling files.

Date: Sat Oct 18 01:06:45 2003
Author: jbielman

Index: slime/swank-loader.lisp
diff -u slime/swank-loader.lisp:1.1 slime/swank-loader.lisp:1.2
--- slime/swank-loader.lisp:1.1	Fri Oct 17 15:09:14 2003
+++ slime/swank-loader.lisp	Sat Oct 18 01:06:44 2003
@@ -7,7 +7,7 @@
 ;;; This code has been placed in the Public Domain.  All warranties
 ;;; are disclaimed.
 ;;;
-;;;   $Id: swank-loader.lisp,v 1.1 2003/10/17 19:09:14 jbielman Exp $
+;;;   $Id: swank-loader.lisp,v 1.2 2003/10/18 05:06:44 jbielman Exp $
 ;;;
 
 (defpackage :swank-loader
@@ -47,6 +47,7 @@
               (when (or needs-recompile
                         (not (probe-file binary-pathname))
                         (file-newer-p source-pathname binary-pathname))
+                (format t "~&;; Compiling ~A...~%" source-pathname)
                 (compile-file source-pathname)
                 (setq needs-recompile t))
               (load binary-pathname))





More information about the slime-cvs mailing list