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
128a5b55
Commit
128a5b55
authored
Nov 20, 1995
by
Richard M. Stallman
Browse files
(Flist): Avoid using -- in while condition.
parent
055ff5a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
src/alloc.c
src/alloc.c
+7
-3
No files found.
src/alloc.c
View file @
128a5b55
...
...
@@ -686,10 +686,14 @@ Any number of arguments, even zero arguments, are allowed.")
int
nargs
;
register
Lisp_Object
*
args
;
{
register
Lisp_Object
val
=
Qnil
;
register
Lisp_Object
val
;
val
=
Qnil
;
while
(
nargs
--
)
val
=
Fcons
(
args
[
nargs
],
val
);
while
(
nargs
>
0
)
{
nargs
--
;
val
=
Fcons
(
args
[
nargs
],
val
);
}
return
val
;
}
...
...
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