aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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]]] */