aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/thread.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/thread.h b/src/thread.h
index e77d1144ecf..231c7acc31f 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -147,7 +147,9 @@ struct thread_state
147#define re_syntax_options (current_thread->m_re_syntax_options) 147#define re_syntax_options (current_thread->m_re_syntax_options)
148 148
149 /* Regexp to use to replace spaces, or NULL meaning don't. */ 149 /* Regexp to use to replace spaces, or NULL meaning don't. */
150 /*re_char*/ unsigned char *m_whitespace_regexp; 150 /* This ought to be a "const re_char *" but that is not available
151 outside regex.h. */
152 const void *m_whitespace_regexp;
151#define whitespace_regexp (current_thread->m_whitespace_regexp) 153#define whitespace_regexp (current_thread->m_whitespace_regexp)
152 154
153 /* This variable is different from waiting_for_input in keyboard.c. 155 /* This variable is different from waiting_for_input in keyboard.c.