aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2003-05-09 13:54:14 +0000
committerRichard M. Stallman2003-05-09 13:54:14 +0000
commit46158a353b4072cfd75650e3296c90b4008b6420 (patch)
tree1c9ae57bc212f2448cb1fca2b8a2b0b63e0bde1c /src
parent75e2fcb63a6fcea329ad2e701d171a0d33235ef1 (diff)
downloademacs-46158a353b4072cfd75650e3296c90b4008b6420.tar.gz
emacs-46158a353b4072cfd75650e3296c90b4008b6420.zip
Test DO_BLOCK_INPUT rather than `emacs'
for use of BLOCK_INPUT and inclusion of lisp.h and blockinput.h.
Diffstat (limited to 'src')
-rw-r--r--src/alloca.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/alloca.c b/src/alloca.c
index ec70d2ad9a1..85e5d73c2d7 100644
--- a/src/alloca.c
+++ b/src/alloca.c
@@ -32,7 +32,7 @@
32# include <stdlib.h> 32# include <stdlib.h>
33#endif 33#endif
34 34
35#ifdef emacs 35#ifdef DO_BLOCK_INPUT
36# include "lisp.h" 36# include "lisp.h"
37# include "blockinput.h" 37# include "blockinput.h"
38#endif 38#endif
@@ -196,7 +196,7 @@ alloca (size)
196 { 196 {
197 register header *hp; /* Traverses linked list. */ 197 register header *hp; /* Traverses linked list. */
198 198
199# ifdef emacs 199# ifdef DO_BLOCK_INPUT
200 BLOCK_INPUT; 200 BLOCK_INPUT;
201# endif 201# endif
202 202
@@ -215,7 +215,7 @@ alloca (size)
215 215
216 last_alloca_header = hp; /* -> last valid storage. */ 216 last_alloca_header = hp; /* -> last valid storage. */
217 217
218# ifdef emacs 218# ifdef DO_BLOCK_INPUT
219 UNBLOCK_INPUT; 219 UNBLOCK_INPUT;
220# endif 220# endif
221 } 221 }