diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/syntax.c b/src/syntax.c index 7adb611cefd..758bec2cf92 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1496,12 +1496,12 @@ skip_chars (forwardp, syntaxp, string, lim) | |||
| 1496 | { | 1496 | { |
| 1497 | if (! SINGLE_BYTE_CHAR_P (c2)) | 1497 | if (! SINGLE_BYTE_CHAR_P (c2)) |
| 1498 | { | 1498 | { |
| 1499 | /* Handle a range starting with a unibyte char | 1499 | /* Handle a range starting with a character of |
| 1500 | and ending with a multibyte char. Split that | 1500 | less than 256, and ending with a character of |
| 1501 | into two ranges, the low one ending at 0377, | 1501 | not less than 256. Split that into two |
| 1502 | and the high one starting at the smallest | 1502 | ranges, the low one ending at 0377, and the |
| 1503 | character in the charset of C2 and ending at | 1503 | high one starting at the smallest character |
| 1504 | C2. */ | 1504 | in the charset of C2 and ending at C2. */ |
| 1505 | int charset = CHAR_CHARSET (c2); | 1505 | int charset = CHAR_CHARSET (c2); |
| 1506 | int c1 = MAKE_CHAR (charset, 0, 0); | 1506 | int c1 = MAKE_CHAR (charset, 0, 0); |
| 1507 | 1507 | ||