diff options
| -rw-r--r-- | src/search.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c index 7f26601cc69..c6c3062e649 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -1313,8 +1313,9 @@ search_buffer (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte, | |||
| 1313 | non-nil, we can use boyer-moore search only if TRT can be | 1313 | non-nil, we can use boyer-moore search only if TRT can be |
| 1314 | represented by the byte array of 256 elements. For that, | 1314 | represented by the byte array of 256 elements. For that, |
| 1315 | all non-ASCII case-equivalents of all case-sensitive | 1315 | all non-ASCII case-equivalents of all case-sensitive |
| 1316 | characters in STRING must belong to the same charset and | 1316 | characters in STRING must belong to the same character |
| 1317 | row. */ | 1317 | group (every 64 characters form a group; U+0000..U+003F, |
| 1318 | U+0040..U+007F, U+0080..U+00BF, ...). */ | ||
| 1318 | 1319 | ||
| 1319 | while (--len >= 0) | 1320 | while (--len >= 0) |
| 1320 | { | 1321 | { |