diff options
author | Kenichi Handa <handa@m17n.org> | 2002-09-03 04:09:06 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2002-09-03 04:09:06 +0000 |
commit | 66f089b2750903fdfbf01a33da0bbbef736e6464 (patch) | |
tree | fb49bc0fd4630b2090208a29b2f391219eb66f6b /src/regex.h | |
parent | d6f0c8e67f272b50bffeaa0b2eefab0f9dc3bd41 (diff) | |
download | emacs-66f089b2750903fdfbf01a33da0bbbef736e6464.tar.gz emacs-66f089b2750903fdfbf01a33da0bbbef736e6464.tar.bz2 emacs-66f089b2750903fdfbf01a33da0bbbef736e6464.zip |
(struct re_pattern_buffer): New member target_multibyte.
Diffstat (limited to 'src/regex.h')
-rw-r--r-- | src/regex.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/regex.h b/src/regex.h index ef4284cdce2..eb1051d1949 100644 --- a/src/regex.h +++ b/src/regex.h @@ -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]]] */ |