diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index ea608d35a78..6255cc3baa3 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -414,7 +414,8 @@ whose values are discarded.") | |||
| 414 | DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0, | 414 | DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0, |
| 415 | "(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.\n\ | 415 | "(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.\n\ |
| 416 | The SYMs are not evaluated. Thus (setq x y) sets x to the value of y.\n\ | 416 | The SYMs are not evaluated. Thus (setq x y) sets x to the value of y.\n\ |
| 417 | Each SYM is set before the next VAL is computed.") | 417 | Each SYM is set before the next VAL is computed. |
| 418 | The return value of the `setq' form is the value of the last VAL.") | ||
| 418 | (args) | 419 | (args) |
| 419 | Lisp_Object args; | 420 | Lisp_Object args; |
| 420 | { | 421 | { |