Mercurial > emacs
diff src/search.c @ 91762:5a41bb37f0ee
(boyer_moore): Fix incorrect synching of the trunk and
emacs-unicode-2.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Mon, 11 Feb 2008 05:25:24 +0000 |
| parents | 606f2d163a64 |
| children | abcbb8375c30 |
line wrap: on
line diff
--- a/src/search.c Mon Feb 11 05:25:15 2008 +0000 +++ b/src/search.c Mon Feb 11 05:25:24 2008 +0000 @@ -1785,7 +1785,7 @@ ch = -1; } - if (ch >= 0400) + if (ch >= 0200) j = (ch & 0x3F) | 0200; else j = *ptr; @@ -1804,7 +1804,7 @@ while (1) { TRANSLATE (ch, inverse_trt, ch); - if (ch >= 0400) + if (ch >= 0200) j = (ch & 0x3F) | 0200; else j = ch;
