diff options
-rw-r--r-- | src/interp/vmlisp.lisp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interp/vmlisp.lisp b/src/interp/vmlisp.lisp index c4b95da4..e909bfd4 100644 --- a/src/interp/vmlisp.lisp +++ b/src/interp/vmlisp.lisp @@ -1101,8 +1101,7 @@ (defun MACERR (MESSAGE &rest ignore) (declare (ignore ignore)) (setq MACERRORCOUNT (+ 1 (eval 'MACERRORCOUNT))) - (error - (LIST "in the expression:" MESSAGE)) + (error (strconc "in the expression: " MESSAGE)) ()) ; 98.0 Stuff Not In The VMLisp Manual That We Like |