1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 00:01:33 -08:00

(struct re_pattern_buffer): New member target_multibyte.

This commit is contained in:
Kenichi Handa 2002-09-03 04:09:06 +00:00
parent d6f0c8e67f
commit 66f089b275

View 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]]] */