diff options
author | Eli Zaretskii <eliz@gnu.org> | 2016-12-05 22:50:44 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 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.tar.bz2 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 Lisp_Object m_re_match_object; #define re_match_object (current_thread->m_re_match_object) - /* Set by `re_set_syntax' to the current regexp syntax to recognize. Can - also be assigned to arbitrarily: each pattern buffer stores its own - syntax, so it can be changed between regex compilations. */ - reg_syntax_t m_re_syntax_options; -#define re_syntax_options (current_thread->m_re_syntax_options) - - /* Regexp to use to replace spaces, or NULL meaning don't. */ - /* This ought to be a "const re_char *" but that is not available - outside regex.h. */ - const void *m_whitespace_regexp; -#define whitespace_regexp (current_thread->m_whitespace_regexp) - /* This variable is different from waiting_for_input in keyboard.c. It is used to communicate to a lisp process-filter/sentinel (via the function Fwaiting_for_user_input_p) whether Emacs was waiting |