aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index e1e0a476662..045d6090a3f 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -455,7 +455,7 @@ usage: (progn BODY...) */)
455} 455}
456 456
457DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0, 457DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
458 doc: /* Eval FIRST and BODY sequentially; value from FIRST. 458 doc: /* Eval FIRST and BODY sequentially; return value from FIRST.
459The value of FIRST is saved during the evaluation of the remaining args, 459The value of FIRST is saved during the evaluation of the remaining args,
460whose values are discarded. 460whose values are discarded.
461usage: (prog1 FIRST BODY...) */) 461usage: (prog1 FIRST BODY...) */)
@@ -489,7 +489,7 @@ usage: (prog1 FIRST BODY...) */)
489} 489}
490 490
491DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0, 491DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
492 doc: /* Eval FORM1, FORM2 and BODY sequentially; value from FORM2. 492 doc: /* Eval FORM1, FORM2 and BODY sequentially; return value from FORM2.
493The value of FORM2 is saved during the evaluation of the 493The value of FORM2 is saved during the evaluation of the
494remaining args, whose values are discarded. 494remaining args, whose values are discarded.
495usage: (prog2 FORM1 FORM2 BODY...) */) 495usage: (prog2 FORM1 FORM2 BODY...) */)