aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/eval.c b/src/eval.c
index 49d6460e6e4..e9f118c5cb9 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -495,17 +495,6 @@ usage: (prog1 FIRST BODY...) */)
495 return val; 495 return val;
496} 496}
497 497
498DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
499 doc: /* Eval FORM1, FORM2 and BODY sequentially; return value from FORM2.
500The value of FORM2 is saved during the evaluation of the
501remaining args, whose values are discarded.
502usage: (prog2 FORM1 FORM2 BODY...) */)
503 (Lisp_Object args)
504{
505 eval_sub (XCAR (args));
506 return Fprog1 (XCDR (args));
507}
508
509DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0, 498DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0,
510 doc: /* Set each SYM to the value of its VAL. 499 doc: /* Set each SYM to the value of its VAL.
511The symbols SYM are variables; they are literal (not evaluated). 500The symbols SYM are variables; they are literal (not evaluated).
@@ -4219,7 +4208,6 @@ alist of active lexical bindings. */);
4219 defsubr (&Scond); 4208 defsubr (&Scond);
4220 defsubr (&Sprogn); 4209 defsubr (&Sprogn);
4221 defsubr (&Sprog1); 4210 defsubr (&Sprog1);
4222 defsubr (&Sprog2);
4223 defsubr (&Ssetq); 4211 defsubr (&Ssetq);
4224 defsubr (&Squote); 4212 defsubr (&Squote);
4225 defsubr (&Sfunction); 4213 defsubr (&Sfunction);