projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2123397
)
Print relative pathnames when compiling test files
author
Owen Rodley
<Strigoides@gmail.com>
Tue, 9 Jul 2013 04:54:04 +0000
(16:54 +1200)
committer
Owen Rodley
<Strigoides@gmail.com>
Tue, 9 Jul 2013 04:54:04 +0000
(16:54 +1200)
Previously absolute pathnames were printed, in contrast the the relative
pathnames printed when compiling the rest of the project.
jscl.lisp
patch
|
blob
|
history
diff --git
a/jscl.lisp
b/jscl.lisp
index
9dd2b5a
..
d2f321c
100644
(file)
--- a/
jscl.lisp
+++ b/
jscl.lisp
@@
-113,7
+113,7
@@
(*compile-print-toplevels* print))
(let* ((source (read-whole-file filename))
(in (make-string-stream source)))
- (format t "Compiling ~a...~%" filename)
+ (format t "Compiling ~a...~%" (enough-namestring filename))
(loop
with eof-mark = (gensym)
for x = (ls-read in nil eof-mark)