From: Karl Heuer Date: Thu, 7 Apr 1994 02:03:10 +0000 (+0000) Subject: (Fsetq): Doc fix. X-Git-Tag: emacs-19.34~9139 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=196e7d3f10af7cf4528ea4c6ba0eaff04ba54966;p=emacs.git (Fsetq): Doc fix. --- 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.") DEFUN ("setq", Fsetq, Ssetq, 0, UNEVALLED, 0, "(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL.\n\ The SYMs are not evaluated. Thus (setq x y) sets x to the value of y.\n\ -Each SYM is set before the next VAL is computed.") +Each SYM is set before the next VAL is computed. +The return value of the `setq' form is the value of the last VAL.") (args) Lisp_Object args; {