Changeset 11720
- Timestamp:
- 03/29/09 09:52:14 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/precompiler.lisp
r11719 r11720 1125 1125 (lambda-expression `(named-lambda ,name ,lambda-list ,@decls ,@(when doc `(,doc)) 1126 1126 (block ,block-name ,@body)))) 1127 (cond (*file-compilation* 1127 (cond ((and (boundp 'jvm::*file-compilation*) 1128 ;; when JVM.lisp isn't loaded yet, this variable isn't bound 1129 ;; meaning that we're not trying to compile to a file: 1130 ;; Both COMPILE and COMPILE-FILE bind this variable. 1131 ;; This function is also triggered by MACROEXPAND, though 1132 jvm::*file-compilation*) 1128 1133 `(fset ',name ,lambda-expression)) 1129 1134 (t
Note: See TracChangeset
for help on using the changeset viewer.