summaryrefslogtreecommitdiff
path: root/regex.h
diff options
context:
space:
mode:
Diffstat (limited to 'regex.h')
-rw-r--r--regex.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/regex.h b/regex.h
index 1818d5f968..b23c8855ef 100644
--- a/regex.h
+++ b/regex.h
@@ -391,9 +391,15 @@ struct re_pattern_buffer
unsigned not_eol : 1;
#ifdef emacs
- /* If true, multi-byte form in the `buffer' should be recognized as a
- multibyte character. */
+ /* If true, multi-byte form in the regexp pattern should be
+ recognized as a multibyte character. When the pattern is
+ compiled, this is set to the same value as target_multibyte
+ below. */
unsigned multibyte : 1;
+
+ /* If true, multi-byte form in the target of match should be
+ recognized as a multibyte character. */
+ unsigned target_multibyte : 1;
#endif
/* [[[end pattern_buffer]]] */
@@ -571,6 +577,3 @@ version-control: t
trim-versions-without-asking: nil
End:
*/
-
-/* arch-tag: bda6e3ec-3c02-4237-a55a-01ad2e120083
- (do not change this comment) */