1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-01 09:51:22 -08:00

(struct re_pattern_buffer): New meumber charset_unibyte.

This commit is contained in:
Kenichi Handa 2007-02-15 11:24:16 +00:00
parent cf9c99bcf5
commit 0f4b87bf93

View file

@ -399,14 +399,15 @@ struct re_pattern_buffer
#ifdef emacs
/* 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. */
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;
/* Charset of unibyte characters at compiling time. */
int charset_unibyte;
#endif
/* [[[end pattern_buffer]]] */