diff options
Diffstat (limited to 'src/regex.c')
| -rw-r--r-- | src/regex.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/regex.c b/src/regex.c index 472ef727979..17562043df1 100644 --- a/src/regex.c +++ b/src/regex.c | |||
| @@ -126,7 +126,6 @@ | |||
| 126 | that make sense only in Emacs. */ | 126 | that make sense only in Emacs. */ |
| 127 | #ifdef emacs | 127 | #ifdef emacs |
| 128 | 128 | ||
| 129 | # include <setjmp.h> | ||
| 130 | # include "lisp.h" | 129 | # include "lisp.h" |
| 131 | # include "character.h" | 130 | # include "character.h" |
| 132 | # include "buffer.h" | 131 | # include "buffer.h" |
| @@ -1832,9 +1831,9 @@ typedef struct | |||
| 1832 | /* The next available element. */ | 1831 | /* The next available element. */ |
| 1833 | #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail]) | 1832 | #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail]) |
| 1834 | 1833 | ||
| 1835 | /* Explicit quit checking is only used on NTemacs and whenever we | 1834 | /* Explicit quit checking is needed for Emacs, which uses polling to |
| 1836 | use polling to process input events. */ | 1835 | process input events. */ |
| 1837 | #if defined emacs && (defined WINDOWSNT || defined SYNC_INPUT) && defined QUIT | 1836 | #ifdef emacs |
| 1838 | extern int immediate_quit; | 1837 | extern int immediate_quit; |
| 1839 | # define IMMEDIATE_QUIT_CHECK \ | 1838 | # define IMMEDIATE_QUIT_CHECK \ |
| 1840 | do { \ | 1839 | do { \ |