changeset 89060:e2cc0f05e825

(struct re_pattern_buffer): New member target_multibyte.
author Kenichi Handa <handa@m17n.org>
date Tue, 03 Sep 2002 04:09:06 +0000
parents 288b118954ca
children 9a9b54d06f3d
files src/regex.h
diffstat 1 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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]]] */