diff options
| author | Kenichi Handa | 2012-12-15 22:04:50 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2012-12-15 22:04:50 +0900 |
| commit | 68abf86780a1b263640e287754dc43526d276aa3 (patch) | |
| tree | 4da55362aef1f6681bb456c9afa9069fa105196a /src | |
| parent | e79d60fededad3281db38fcf2803f959446e05f7 (diff) | |
| download | emacs-68abf86780a1b263640e287754dc43526d276aa3.tar.gz emacs-68abf86780a1b263640e287754dc43526d276aa3.zip | |
search.c (search_buffer): Improve a comment.
Diffstat (limited to 'src')
| -rw-r--r-- | src/search.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c index c6c3062e649..fb76880b612 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -1314,7 +1314,9 @@ search_buffer (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte, | |||
| 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 character | 1316 | characters in STRING must belong to the same character |
| 1317 | group (every 64 characters form a group; U+0000..U+003F, | 1317 | group (two characters belong to the same group iff their |
| 1318 | multibyte forms are the same except for the last byte; | ||
| 1319 | i.e. every 64 characters form a group; U+0000..U+003F, | ||
| 1318 | U+0040..U+007F, U+0080..U+00BF, ...). */ | 1320 | U+0040..U+007F, U+0080..U+00BF, ...). */ |
| 1319 | 1321 | ||
| 1320 | while (--len >= 0) | 1322 | while (--len >= 0) |