diff options
| author | Kenichi Handa | 2000-10-24 00:09:09 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-10-24 00:09:09 +0000 |
| commit | 7ae339a717ad297cdea2db91ca669077895f3449 (patch) | |
| tree | f34fbd03cbee21f7006d4f8065702fed8e45cfbf /src/syntax.c | |
| parent | 3090a5a5bc8b9b6bd1a33128a93fe341b40de0d5 (diff) | |
| download | emacs-7ae339a717ad297cdea2db91ca669077895f3449.tar.gz emacs-7ae339a717ad297cdea2db91ca669077895f3449.zip | |
*** empty log message ***
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 | ||