From: Kenichi Handa Date: Mon, 11 Feb 2008 05:25:24 +0000 (+0000) Subject: (boyer_moore): Fix incorrect synching of the trunk and X-Git-Tag: emacs-pretest-23.0.90~8010 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f51995fa922a78a20a2418556c4c99851a67560c;p=emacs.git (boyer_moore): Fix incorrect synching of the trunk and emacs-unicode-2. --- diff --git a/src/search.c b/src/search.c index 9c195300823..56bf47571e1 100644 --- a/src/search.c +++ b/src/search.c @@ -1785,7 +1785,7 @@ boyer_moore (n, base_pat, len, len_byte, trt, inverse_trt, ch = -1; } - if (ch >= 0400) + if (ch >= 0200) j = (ch & 0x3F) | 0200; else j = *ptr; @@ -1804,7 +1804,7 @@ boyer_moore (n, base_pat, len, len_byte, trt, inverse_trt, while (1) { TRANSLATE (ch, inverse_trt, ch); - if (ch >= 0400) + if (ch >= 0200) j = (ch & 0x3F) | 0200; else j = ch;