Skip to content

Commit

Permalink
(defadvice compile-file): Return all values from the real compile-file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Simmons committed Aug 10, 2005
1 parent 31281a5 commit 148a69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swank-lispworks.lisp
Expand Up @@ -388,7 +388,7 @@ Return NIL if the symbol is unbound."

(lw:defadvice (compile-file compile-file-and-collect-notes :around)
(pathname &rest rest)
(prog1 (apply #'lw:call-next-advice pathname rest)
(multiple-value-prog1 (apply #'lw:call-next-advice pathname rest)
(when *within-call-with-compilation-hooks*
(maphash (lambda (unfun dspecs)
(dolist (dspec dspecs)
Expand Down

0 comments on commit 148a69e

Please sign in to comment.