]> git.eshelyaron.com Git - emacs.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)
src/regex.h

index ef4284cdce2894645bd705d1a41314fb21cf9d70..eb1051d19494f8c3b4bb62598ce85a99987e54b7 100644 (file)
@@ -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]]] */