Changeset 15582 for trunk/abcl/src/org/armedbear/lisp/compile-file.lisp
- Timestamp:
- 05/23/22 06:23:41 (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/compile-file.lisp
r15581 r15582 96 96 "The stream to emit compiler diagnostic messages to, or nil to muffle output.") 97 97 (export '*compiler-diagnostic*) 98 (defmacro diag (fmt &rest args) 99 `(format *compiler-diagnostic* "~&SYSTEM::*COMPILER-DIAGNOSTIC* ~A~&" (format nil ,fmt ,@args))) 98 (defun diag (format &rest args) 99 (apply #'cl:format 100 *compiler-diagnostic* 101 (cl:concatenate 'string "~&SYSTEM::*COMPILER-DIAGNOSTIC* " format "~&") 102 (when args 103 args))) 104 100 105 101 106 (declaim (ftype (function (t) t) verify-load))
Note: See TracChangeset
for help on using the changeset viewer.