Mercurial > emacs
diff src/regex.h @ 89060:e2cc0f05e825
(struct re_pattern_buffer): New member target_multibyte.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Tue, 03 Sep 2002 04:09:06 +0000 |
| parents | 37d5eb3558fb |
| children | 2f877ed80fa6 |
line wrap: on
line diff
--- a/src/regex.h Tue Sep 03 04:08:49 2002 +0000 +++ b/src/regex.h Tue Sep 03 04:09:06 2002 +0000 @@ -391,9 +391,13 @@ 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]]] */
