Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
87d238ba
Commit
87d238ba
authored
Apr 11, 1994
by
Richard M. Stallman
Browse files
(Fsetq): Doc fix.
parent
a8920a17
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/eval.c
src/eval.c
+3
-3
No files found.
src/eval.c
View file @
87d238ba
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment