diff options
| author | Eli Zaretskii | 2016-12-05 22:50:44 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-12-05 22:50:44 +0200 |
| commit | 66a5abb102ec1d6e4c327632ef235d1eb6433291 (patch) | |
| tree | 9e894dfb5dcf42869bff94987d7ab5628ea71358 /src/thread.h | |
| parent | e4deba098e0281538a0e7b04d849989f17e5bcc7 (diff) | |
| download | emacs-66a5abb102ec1d6e4c327632ef235d1eb6433291.tar.gz emacs-66a5abb102ec1d6e4c327632ef235d1eb6433291.zip | |
Fix compilation problems.
Diffstat (limited to 'src/thread.h')
| -rw-r--r-- | src/thread.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/thread.h b/src/thread.h index a089c7de573..d4cae360f68 100644 --- a/src/thread.h +++ b/src/thread.h | |||
| @@ -142,18 +142,6 @@ struct thread_state | |||
| 142 | Lisp_Object m_re_match_object; | 142 | Lisp_Object m_re_match_object; |
| 143 | #define re_match_object (current_thread->m_re_match_object) | 143 | #define re_match_object (current_thread->m_re_match_object) |
| 144 | 144 | ||
| 145 | /* Set by `re_set_syntax' to the current regexp syntax to recognize. Can | ||
| 146 | also be assigned to arbitrarily: each pattern buffer stores its own | ||
| 147 | syntax, so it can be changed between regex compilations. */ | ||
| 148 | reg_syntax_t m_re_syntax_options; | ||
| 149 | #define re_syntax_options (current_thread->m_re_syntax_options) | ||
| 150 | |||
| 151 | /* Regexp to use to replace spaces, or NULL meaning don't. */ | ||
| 152 | /* This ought to be a "const re_char *" but that is not available | ||
| 153 | outside regex.h. */ | ||
| 154 | const void *m_whitespace_regexp; | ||
| 155 | #define whitespace_regexp (current_thread->m_whitespace_regexp) | ||
| 156 | |||
| 157 | /* This variable is different from waiting_for_input in keyboard.c. | 145 | /* This variable is different from waiting_for_input in keyboard.c. |
| 158 | It is used to communicate to a lisp process-filter/sentinel (via the | 146 | It is used to communicate to a lisp process-filter/sentinel (via the |
| 159 | function Fwaiting_for_user_input_p) whether Emacs was waiting | 147 | function Fwaiting_for_user_input_p) whether Emacs was waiting |