[movitz-cvs] CVS update: movitz/compiler.lisp
Frode Vatvedt Fjeld
ffjeld at common-lisp.net
Mon Jan 19 19:21:09 UTC 2004
Update of /project/movitz/cvsroot/movitz
In directory common-lisp.net:/tmp/cvs-serv23969
Modified Files:
compiler.lisp
Log Message:
A "fix" for SBCL's defconstant annoyance, according to nyef's patch.
Date: Mon Jan 19 14:21:08 2004
Author: ffjeld
Index: movitz/compiler.lisp
diff -u movitz/compiler.lisp:1.3 movitz/compiler.lisp:1.4
--- movitz/compiler.lisp:1.3 Fri Jan 16 14:06:40 2004
+++ movitz/compiler.lisp Mon Jan 19 14:21:08 2004
@@ -8,7 +8,7 @@
;;;; Created at: Wed Oct 25 12:30:49 2000
;;;; Distribution: See the accompanying file COPYING.
;;;;
-;;;; $Id: compiler.lisp,v 1.3 2004/01/16 19:06:40 ffjeld Exp $
+;;;; $Id: compiler.lisp,v 1.4 2004/01/19 19:21:08 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
@@ -867,7 +867,8 @@
load-priority
(delete-file-p nil))
(handler-bind
- (#+ignore ((or error warning) (lambda (c)
+ (#+sbcl (sb-ext:defconstant-uneql #'continue)
+ #+ignore ((or error warning) (lambda (c)
(declare (ignore c))
(format *error-output* "~&;; In file ~S:" path))))
(unwind-protect
More information about the Movitz-cvs
mailing list