]> code.delx.au - gnu-emacs/blobdiff - src/regex.h
Merge from emacs--devo--0
[gnu-emacs] / src / regex.h
index dd57ba36f574024b93cc8ccba6d5202668266325..3f3d313397b1822bb4b6a85985cc2747d25a8c3d 100644 (file)
@@ -398,9 +398,15 @@ struct re_pattern_buffer
   unsigned used_syntax : 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.  When the pattern is
+     compiled, this is set to the same value as target_multibyte
+     below.  */
   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]]] */