diff options
| author | Karl Heuer | 1994-04-07 02:03:10 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-04-07 02:03:10 +0000 |
| commit | 196e7d3f10af7cf4528ea4c6ba0eaff04ba54966 (patch) | |
| tree | bbbdc30379b1b76a0014c4fdd1c63b3cd9fd2d26 /src/eval.c | |
| parent | a7c86d7fd2ef2ac7f8f79603455ef02697fd04f3 (diff) | |
| download | emacs-196e7d3f10af7cf4528ea4c6ba0eaff04ba54966.tar.gz emacs-196e7d3f10af7cf4528ea4c6ba0eaff04ba54966.zip | |
(Fsetq): Doc fix.
Diffstat (limited to 'src/eval.c')
| -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 | { |