aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorKarl Heuer1994-04-07 02:03:10 +0000
committerKarl Heuer1994-04-07 02:03:10 +0000
commit196e7d3f10af7cf4528ea4c6ba0eaff04ba54966 (patch)
treebbbdc30379b1b76a0014c4fdd1c63b3cd9fd2d26 /src/eval.c
parenta7c86d7fd2ef2ac7f8f79603455ef02697fd04f3 (diff)
downloademacs-196e7d3f10af7cf4528ea4c6ba0eaff04ba54966.tar.gz
emacs-196e7d3f10af7cf4528ea4c6ba0eaff04ba54966.zip
(Fsetq): Doc fix.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c3
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.")
414DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0, 414DEFUN ("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\
416The SYMs are not evaluated. Thus (setq x y) sets x to the value of y.\n\ 416The SYMs are not evaluated. Thus (setq x y) sets x to the value of y.\n\
417Each SYM is set before the next VAL is computed.") 417Each SYM is set before the next VAL is computed.
418The 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{