summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-04-11 21:11:22 +0000
committerRichard M. Stallman <rms@gnu.org>1994-04-11 21:11:22 +0000
commit0b93ad4d7ddf80e4a52373edefa23bdc562ce655 (patch)
tree2606ceaad78d113eff832afeabe24bb8b45310f6 /src
parent1e44d674f99669d6027d5c7cf04980ebedf4d246 (diff)
downloademacs-0b93ad4d7ddf80e4a52373edefa23bdc562ce655.tar.gz
(Fsetq): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c
index 6255cc3baa3..fa67a453f30 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -390,7 +390,7 @@ whose values are discarded.")
val = Qnil;
- if (NILP(args))
+ if (NILP (args))
return Qnil;
args_left = args;
@@ -405,7 +405,7 @@ whose values are discarded.")
Feval (Fcar (args_left));
args_left = Fcdr (args_left);
}
- while (!NILP(args_left));
+ while (!NILP (args_left));
UNGCPRO;
return val;
@@ -414,7 +414,7 @@ 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.\n\
The return value of the `setq' form is the value of the last VAL.")
(args)
Lisp_Object args;