diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lisp.h b/src/lisp.h index cd3f7fc7c3c..0fa1d28017f 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1083,10 +1083,7 @@ void staticpro(); | |||
| 1083 | 1083 | ||
| 1084 | #define UNGCPRO (gcprolist = gcpro1.next) | 1084 | #define UNGCPRO (gcprolist = gcpro1.next) |
| 1085 | 1085 | ||
| 1086 | /* Evaluate expr, UNGCPRO, and then return the value of expr. I used | 1086 | /* Evaluate expr, UNGCPRO, and then return the value of expr. */ |
| 1087 | to have a `do ... while' clause around this to make it interact | ||
| 1088 | with semicolons correctly, but this makes some compilers complain | ||
| 1089 | that the while is never reached. */ | ||
| 1090 | #define RETURN_UNGCPRO(expr) \ | 1087 | #define RETURN_UNGCPRO(expr) \ |
| 1091 | do \ | 1088 | do \ |
| 1092 | { \ | 1089 | { \ |