]> code.delx.au - gnu-emacs/blobdiff - src/regex.h
*** empty log message ***
[gnu-emacs] / src / regex.h
index 1cfd4363ea750826f5547ae7609a1be567711611..b23c8855eff9246c4cab68c3a1a9406d7a95b2a8 100644 (file)
@@ -391,9 +391,15 @@ 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.  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]]] */