[Openmcl-cvs-notifications] r13205 - /trunk/source/compiler/nx0.lisp
greg at clozure.com
greg at clozure.com
Mon Nov 16 17:30:34 UTC 2009
Author: greg
Date: Mon Nov 16 17:30:34 2009
New Revision: 13205
Log:
I've always had trouble parsing the 'not a symbol or lambda expression' err=
or message. Hopefully I've made it clearer.
Modified:
trunk/source/compiler/nx0.lisp
Modified: trunk/source/compiler/nx0.lisp
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/source/compiler/nx0.lisp (original)
+++ trunk/source/compiler/nx0.lisp Mon Nov 16 17:30:34 2009
@@ -1938,7 +1938,7 @@
(nx1-typed-call sym args))))
(if (lambda-expression-p sym)
(nx1-lambda-bind (%cadr sym) args (%cddr sym))
- (nx-error "~S is not a symbol or lambda expression in the form ~S ."=
sym form)))))
+ (nx-error "In the form ~S, ~S is not a symbol or lambda expression."=
form sym)))))
=
(defun nx1-treat-as-call (args)
(nx1-typed-call (car args) (%cdr args)))
More information about the Openmcl-cvs-notifications
mailing list