# HG changeset patch
# User Kenichi Handa <handa@m17n.org>
# Date 1031026146 0
# Node ID e2cc0f05e82511d171840c1c582bb474c65f870f
# Parent  288b118954cadac04b33ef5b9f0f4c4d0054fdb3
(struct re_pattern_buffer): New member target_multibyte.

diff -r 288b118954ca -r e2cc0f05e825 src/regex.h
--- a/src/regex.h	Tue Sep 03 04:08:49 2002 +0000
+++ b/src/regex.h	Tue Sep 03 04:09:06 2002 +0000
@@ -391,9 +391,13 @@
   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]]] */