diff options
| author | Kenichi Handa | 2008-02-11 05:25:24 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-02-11 05:25:24 +0000 |
| commit | f51995fa922a78a20a2418556c4c99851a67560c (patch) | |
| tree | 19eb317c7e026280d3f5d3aa9b68e8d405994cdd | |
| parent | 5897f4405579d2123e5ec2d66afc6f63f1251233 (diff) | |
| download | emacs-f51995fa922a78a20a2418556c4c99851a67560c.tar.gz emacs-f51995fa922a78a20a2418556c4c99851a67560c.zip | |
(boyer_moore): Fix incorrect synching of the trunk and
emacs-unicode-2.
| -rw-r--r-- | src/search.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, | |||
| 1785 | ch = -1; | 1785 | ch = -1; |
| 1786 | } | 1786 | } |
| 1787 | 1787 | ||
| 1788 | if (ch >= 0400) | 1788 | if (ch >= 0200) |
| 1789 | j = (ch & 0x3F) | 0200; | 1789 | j = (ch & 0x3F) | 0200; |
| 1790 | else | 1790 | else |
| 1791 | j = *ptr; | 1791 | j = *ptr; |
| @@ -1804,7 +1804,7 @@ boyer_moore (n, base_pat, len, len_byte, trt, inverse_trt, | |||
| 1804 | while (1) | 1804 | while (1) |
| 1805 | { | 1805 | { |
| 1806 | TRANSLATE (ch, inverse_trt, ch); | 1806 | TRANSLATE (ch, inverse_trt, ch); |
| 1807 | if (ch >= 0400) | 1807 | if (ch >= 0200) |
| 1808 | j = (ch & 0x3F) | 0200; | 1808 | j = (ch & 0x3F) | 0200; |
| 1809 | else | 1809 | else |
| 1810 | j = ch; | 1810 | j = ch; |