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
f3ca341e
Commit
f3ca341e
authored
Sep 19, 1994
by
Richard M. Stallman
Browse files
(RETURN_UNGCPRO): Use if (1) .. else, not do ... while (0).
parent
aa138cb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/lisp.h
src/lisp.h
+2
-2
No files found.
src/lisp.h
View file @
f3ca341e
...
...
@@ -1095,14 +1095,14 @@ void staticpro();
/* Evaluate expr, UNGCPRO, and then return the value of expr. */
#define RETURN_UNGCPRO(expr) \
do
\
if (1)
\
{ \
Lisp_Object ret_ungc_val; \
ret_ungc_val = (expr); \
UNGCPRO; \
return ret_ungc_val; \
} \
while (1)
else
/* Defined in data.c */
extern
Lisp_Object
Qnil
,
Qt
,
Qquote
,
Qlambda
,
Qsubr
,
Qunbound
;
...
...
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