Mercurial > emacs
comparison src/lisp.h @ 8560:42b300c5ac5d
Comment fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 17 Aug 1994 22:50:36 +0000 |
parents | abbe65c17b55 |
children | 232f6277bb8a |
comparison
equal
deleted
inserted
replaced
8559:509daefd2d13 | 8560:42b300c5ac5d |
---|---|
1081 | 1081 |
1082 void staticpro(); | 1082 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 { \ |
1093 Lisp_Object ret_ungc_val; \ | 1090 Lisp_Object ret_ungc_val; \ |
1094 ret_ungc_val = (expr); \ | 1091 ret_ungc_val = (expr); \ |