(RETURN_UNGCPRO): Use if (1) .. else, not do ... while (0).
This commit is contained in:
parent
aa138cb419
commit
f3ca341e3c
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue