]> Savannah Git Hosting - gnulib.git/commitdiff
(struct re_pattern_buffer): New member target_multibyte.
authorKenichi Handa <handa@m17n.org>
Tue, 3 Sep 2002 04:09:06 +0000 (04:09 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 3 Sep 2002 04:09:06 +0000 (04:09 +0000)
regex.h

diff --git a/regex.h b/regex.h
index ef4284cdce2894645bd705d1a41314fb21cf9d70..eb1051d19494f8c3b4bb62598ce85a99987e54b7 100644 (file)
--- 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]]] */