Mercurial > emacs
changeset 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 | a21ac0ad90f7 |
children | 23c9bcb32067 |
files | src/search.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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;