mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-10 05:30:45 -08:00
(Fdefconst, Fdefvar): Error if too many arguments.
This commit is contained in:
parent
b448bfa028
commit
a42ba017bc
1 changed files with 11 additions and 5 deletions
16
src/eval.c
16
src/eval.c
|
|
@ -571,18 +571,21 @@ If INITVALUE is missing, SYMBOL's value is not set.")
|
|||
(args)
|
||||
Lisp_Object args;
|
||||
{
|
||||
register Lisp_Object sym, tem;
|
||||
register Lisp_Object sym, tem, tail;
|
||||
|
||||
sym = Fcar (args);
|
||||
tem = Fcdr (args);
|
||||
if (!NILP (tem))
|
||||
tail = Fcdr (args);
|
||||
if (!NILP (Fcdr (Fcdr (tail))))
|
||||
error ("too many arguments");
|
||||
|
||||
if (!NILP (tail))
|
||||
{
|
||||
tem = Fdefault_boundp (sym);
|
||||
if (NILP (tem))
|
||||
Fset_default (sym, Feval (Fcar (Fcdr (args))));
|
||||
}
|
||||
tem = Fcar (Fcdr (Fcdr (args)));
|
||||
if (!NILP (tem))
|
||||
tail = Fcdr (Fcdr (args));
|
||||
if (!NILP (Fcar (tail)))
|
||||
{
|
||||
if (!NILP (Vpurify_flag))
|
||||
tem = Fpurecopy (tem);
|
||||
|
|
@ -612,6 +615,9 @@ it would override the user's choice.")
|
|||
register Lisp_Object sym, tem;
|
||||
|
||||
sym = Fcar (args);
|
||||
if (!NILP (Fcdr (Fcdr (Fcdr (args)))))
|
||||
error ("too many arguments");
|
||||
|
||||
Fset_default (sym, Feval (Fcar (Fcdr (args))));
|
||||
tem = Fcar (Fcdr (Fcdr (args)));
|
||||
if (!NILP (tem))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue