diff options
| author | Joakim Verona | 2012-09-19 01:09:51 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-09-19 01:09:51 +0200 |
| commit | 6c86337db3f2b22977d7b94b054458a2d446c504 (patch) | |
| tree | 04725c50cbd76c8ffd0faf4cdce895a89a506a58 /src/regex.c | |
| parent | aac9139d11cf7f9ee84d931ada85be8fa0c90f21 (diff) | |
| parent | fefa299077c02a931e5e72f7646e3dfa28f5e8ff (diff) | |
| download | emacs-6c86337db3f2b22977d7b94b054458a2d446c504.tar.gz emacs-6c86337db3f2b22977d7b94b054458a2d446c504.zip | |
not compiling yet
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 { \ |