(RETURN_UNGCPRO): Use if (1) .. else, not do ... while (0).

This commit is contained in:
Richard M. Stallman 1994-09-19 05:07:10 +00:00
parent aa138cb419
commit f3ca341e3c

View file

@ -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;