From 03a52f3f77e241655b77b8ebdd692f6abe638965 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. --- regex.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/regex.h b/regex.h index ef4284cdce..eb1051d194 100644 --- a/regex.h +++ b/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