# HG changeset patch # User Andreas Schwab # Date 1205765554 0 # Node ID 408f1bfeb7e8022d4cebe569e10ae44444f6de0d # Parent fde89c413096750238959e37dabd83407b9be789 (re_match_2_internal): Properly match raw 8-bit bytes against a charset. diff -r fde89c413096 -r 408f1bfeb7e8 src/ChangeLog --- a/src/ChangeLog Mon Mar 17 14:32:31 2008 +0000 +++ b/src/ChangeLog Mon Mar 17 14:52:34 2008 +0000 @@ -1,5 +1,8 @@ 2008-03-17 Andreas Schwab + * regex.c (re_match_2_internal): Properly match raw 8-bit bytes + against a charset. + * lisp.h (Fbuffer_list): Declare. 2008-03-17 Jan Dj$(Q)Z(Brv diff -r fde89c413096 -r 408f1bfeb7e8 src/regex.c --- a/src/regex.c Mon Mar 17 14:32:31 2008 +0000 +++ b/src/regex.c Mon Mar 17 14:52:34 2008 +0000 @@ -5689,6 +5689,8 @@ c = c1; } } + else + unibyte_char = true; } if (unibyte_char && c < (1 << BYTEWIDTH))