diff options
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 4 |
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 | ||
| 457 | DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0, | 457 | DEFUN ("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. |
| 459 | The value of FIRST is saved during the evaluation of the remaining args, | 459 | The value of FIRST is saved during the evaluation of the remaining args, |
| 460 | whose values are discarded. | 460 | whose values are discarded. |
| 461 | usage: (prog1 FIRST BODY...) */) | 461 | usage: (prog1 FIRST BODY...) */) |
| @@ -489,7 +489,7 @@ usage: (prog1 FIRST BODY...) */) | |||
| 489 | } | 489 | } |
| 490 | 490 | ||
| 491 | DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0, | 491 | DEFUN ("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. |
| 493 | The value of FORM2 is saved during the evaluation of the | 493 | The value of FORM2 is saved during the evaluation of the |
| 494 | remaining args, whose values are discarded. | 494 | remaining args, whose values are discarded. |
| 495 | usage: (prog2 FORM1 FORM2 BODY...) */) | 495 | usage: (prog2 FORM1 FORM2 BODY...) */) |