summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@gnu.org>2012-12-15 21:32:23 +0900
committerKenichi Handa <handa@gnu.org>2012-12-15 21:32:23 +0900
commite79d60fededad3281db38fcf2803f959446e05f7 (patch)
treebb250454e7c735aac9d6afcab147df6b81c1167a
parent76ef84238b25be3f000f083bea72706b4dbc891b (diff)
downloademacs-e79d60fededad3281db38fcf2803f959446e05f7.tar.gz
search.c (search_buffer): Improve a comment.
-rw-r--r--src/search.c5
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,
non-nil, we can use boyer-moore search only if TRT can be
represented by the byte array of 256 elements. For that,
all non-ASCII case-equivalents of all case-sensitive
- characters in STRING must belong to the same charset and
- row. */
+ characters in STRING must belong to the same character
+ group (every 64 characters form a group; U+0000..U+003F,
+ U+0040..U+007F, U+0080..U+00BF, ...). */
while (--len >= 0)
{