From 66f089b2750903fdfbf01a33da0bbbef736e6464 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 3 Sep 2002 04:09:06 +0000 Subject: [PATCH] (struct re_pattern_buffer): New member target_multibyte. --- src/regex.h | 8 ++++++-- 1 file 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 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. */ 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]]] */ -- 2.39.5