aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex.h
diff options
context:
space:
mode:
authorKenichi Handa2002-09-03 04:09:06 +0000
committerKenichi Handa2002-09-03 04:09:06 +0000
commit66f089b2750903fdfbf01a33da0bbbef736e6464 (patch)
treefb49bc0fd4630b2090208a29b2f391219eb66f6b /src/regex.h
parentd6f0c8e67f272b50bffeaa0b2eefab0f9dc3bd41 (diff)
downloademacs-66f089b2750903fdfbf01a33da0bbbef736e6464.tar.gz
emacs-66f089b2750903fdfbf01a33da0bbbef736e6464.zip
(struct re_pattern_buffer): New member target_multibyte.
Diffstat (limited to 'src/regex.h')
-rw-r--r--src/regex.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/regex.h b/src/regex.h
index ef4284cdce2..eb1051d1949 100644
--- a/src/regex.h
+++ b/src/regex.h
@@ -391,9 +391,13 @@ struct re_pattern_buffer
391 unsigned not_eol : 1; 391 unsigned not_eol : 1;
392 392
393#ifdef emacs 393#ifdef emacs
394 /* If true, multi-byte form in the `buffer' should be recognized as a 394 /* If true, multi-byte form in the regexp pattern should be
395 multibyte character. */ 395 recognized as a multibyte character. */
396 unsigned multibyte : 1; 396 unsigned multibyte : 1;
397
398 /* If true, multi-byte form in the target of match should be
399 recognized as a multibyte character. */
400 unsigned target_multibyte : 1;
397#endif 401#endif
398 402
399/* [[[end pattern_buffer]]] */ 403/* [[[end pattern_buffer]]] */