CMUCL commit: intl-branch src/code (macros.lisp)
Raymond Toy
rtoy at common-lisp.net
Wed Feb 10 04:57:23 CET 2010
Date: Tuesday, February 9, 2010 @ 22:57:23
Author: rtoy
Path: /project/cmucl/cvsroot/src/code
Tag: intl-branch
Modified: macros.lisp
Oops. :report needs a string. Will fix this up later.
-------------+
macros.lisp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Index: src/code/macros.lisp
diff -u src/code/macros.lisp:1.113.10.3 src/code/macros.lisp:1.113.10.4
--- src/code/macros.lisp:1.113.10.3 Tue Feb 9 16:33:10 2010
+++ src/code/macros.lisp Tue Feb 9 22:57:23 2010
@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/code/macros.lisp,v 1.113.10.3 2010-02-09 21:33:10 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/code/macros.lisp,v 1.113.10.4 2010-02-10 03:57:23 rtoy Exp $")
;;;
;;; **********************************************************************
;;;
@@ -90,12 +90,12 @@
:format-control _"defining macro ~A"
:format-arguments (list name))
(continue ()
- :report _"Ignore the lock and continue")
+ :report "Ignore the lock and continue")
(unlock-package ()
- :report _"Disable the package's definition-lock then continue"
+ :report "Disable the package's definition-lock then continue"
(setf (ext:package-definition-lock package) nil))
(unlock-all ()
- :report _"Unlock all packages, then continue"
+ :report "Unlock all packages, then continue"
(lisp::unlock-all-packages))))))))
(let ((whole (gensym "WHOLE-"))
(environment (gensym "ENV-")))
More information about the cmucl-commit
mailing list