Mercurial > emacs
changeset 6803:656d16ca0419
(Fsetq): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 11 Apr 1994 21:11:22 +0000 |
parents | 7d69da13c140 |
children | dcbde04df85c |
files | src/eval.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Mon Apr 11 21:10:48 1994 +0000 +++ b/src/eval.c Mon Apr 11 21:11:22 1994 +0000 @@ -390,7 +390,7 @@ val = Qnil; - if (NILP(args)) + if (NILP (args)) return Qnil; args_left = args; @@ -405,7 +405,7 @@ Feval (Fcar (args_left)); args_left = Fcdr (args_left); } - while (!NILP(args_left)); + while (!NILP (args_left)); UNGCPRO; return val; @@ -414,7 +414,7 @@ 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.\n\ The return value of the `setq' form is the value of the last VAL.") (args) Lisp_Object args;