# HG changeset patch # User Kenichi Handa # Date 1202707524 0 # Node ID 5a41bb37f0eea5e678cb0747e56af084fdb8f9b0 # Parent a21ac0ad90f75f68acca4fbb0b7ebaa91a930f3f (boyer_moore): Fix incorrect synching of the trunk and emacs-unicode-2. diff -r a21ac0ad90f7 -r 5a41bb37f0ee src/search.c --- 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;