# HG changeset patch # User Kenichi Handa # Date 1171538656 0 # Node ID 2112cef037a54e1512a7d15ee2877b308839865b # Parent 8780137cabbc057d2b2ae983d80c595cdfaba240 (struct re_pattern_buffer): New meumber charset_unibyte. diff -r 8780137cabbc -r 2112cef037a5 src/regex.h --- a/src/regex.h Thu Feb 15 11:23:52 2007 +0000 +++ b/src/regex.h Thu Feb 15 11:24:16 2007 +0000 @@ -399,14 +399,15 @@ #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]]] */