From 254c06a8d8d516a22c9b72dd1c1e32a2e6a83139 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 5 Mar 2010 14:54:39 -0500 Subject: [PATCH] * regex.c (regex_compile): Setup gl_state as well. --- src/ChangeLog | 2 ++ src/regex.c | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index c6bb157aea7..f7226d6fc6f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2010-03-05 Stefan Monnier + * regex.c (regex_compile): Setup gl_state as well. + * syntax.c (skip_chars): Setup gl_state (bug#3823). (in_classes): Use CONSP before XCAR/XCDR. diff --git a/src/regex.c b/src/regex.c index bb921a5b519..f242446796d 100644 --- a/src/regex.c +++ b/src/regex.c @@ -3065,6 +3065,13 @@ regex_compile (pattern, size, syntax, bufp) don't need to handle them for multibyte. They are distinguished by a negative wctype. */ + /* Setup the gl_state object to its buffer-defined + value. This hardcodes the buffer-global + syntax-table for ASCII chars, while the other chars + will obey syntax-table properties. It's not ideal, + but it's the way it's been done until now. */ + SETUP_SYNTAX_TABLE (BEGV, 0); + for (ch = 0; ch < 256; ++ch) { c = RE_CHAR_TO_MULTIBYTE (ch); -- 2.39.5