# HG changeset patch # User Kenichi Handa # Date 1031026146 0 # Node ID d351decde3d45350c90db3a684462aadbe370504 # Parent aa72817b4fe439e5760c83197821225528e151f0 (struct re_pattern_buffer): New member target_multibyte. diff --git a/regex.h b/regex.h --- a/regex.h +++ b/regex.h @@ -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]]] */