Mercurial > hg > xemacs-beta
diff src/data.c @ 5207:1096ef427b56
Error on too many arguments to #'function, #'quote.
2010-04-29 Aidan Kehoe <kehoea@parhasard.net>
* eval.c (Fquote, Ffunction): Error on more than one argument to
these special operators.
* data.c (syms_of_data): Move Qquote to general-slots.h from this
file, now it's used in eval.c
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Thu, 29 Apr 2010 15:49:21 +0100 |
parents | 71ee43b8a74d |
children | c096d8051f89 308d34e9f07d |
line wrap: on
line diff
--- a/src/data.c Sat Apr 17 10:40:03 2010 +0100 +++ b/src/data.c Thu Apr 29 15:49:21 2010 +0100 @@ -34,7 +34,7 @@ #include "syssignal.h" #include "sysfloat.h" -Lisp_Object Qnil, Qt, Qquote, Qlambda, Qunbound; +Lisp_Object Qnil, Qt, Qlambda, Qunbound; Lisp_Object Qerror_conditions, Qerror_message; Lisp_Object Qerror, Qquit, Qsyntax_error, Qinvalid_read_syntax; Lisp_Object Qlist_formation_error, Qstructure_formation_error; @@ -3516,7 +3516,6 @@ INIT_LISP_OBJECT (ephemeron); INIT_LISP_OBJECT (weak_box); - DEFSYMBOL (Qquote); DEFSYMBOL (Qlambda); DEFSYMBOL (Qlistp); DEFSYMBOL (Qtrue_list_p);