diff options
| author | Eli Zaretskii | 2000-10-15 05:55:40 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-10-15 05:55:40 +0000 |
| commit | ef6d59c99e8390af85305d58119e311a15013e76 (patch) | |
| tree | 6ee915dfe0769441f5bc1699214d57cc073cbec4 /src | |
| parent | 9be031e447f42a977499a3e3abedb0dcf8749268 (diff) | |
| download | emacs-ef6d59c99e8390af85305d58119e311a15013e76.tar.gz emacs-ef6d59c99e8390af85305d58119e311a15013e76.zip | |
Fix wording in a comment.
Diffstat (limited to 'src')
| -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 04aad1d9a5d..463e1747b0a 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1483,12 +1483,12 @@ skip_chars (forwardp, syntaxp, string, lim) | |||
| 1483 | { | 1483 | { |
| 1484 | if (! SINGLE_BYTE_CHAR_P (c2)) | 1484 | if (! SINGLE_BYTE_CHAR_P (c2)) |
| 1485 | { | 1485 | { |
| 1486 | /* Handle a range starting by a unibyte char and | 1486 | /* Handle a range starting with a unibyte char |
| 1487 | ending by a multibyte char. Split | 1487 | and ending with a multibyte char. Split that |
| 1488 | that into two ranges, the low one ending at | 1488 | into two ranges, the low one ending at 0377, |
| 1489 | 0377, and the high one starting at the | 1489 | and the high one starting at the smallest |
| 1490 | smallest character in the charset of C2 and | 1490 | character in the charset of C2 and ending at |
| 1491 | ending at C2. */ | 1491 | C2. */ |
| 1492 | int charset = CHAR_CHARSET (c2); | 1492 | int charset = CHAR_CHARSET (c2); |
| 1493 | int c1 = MAKE_CHAR (charset, 0, 0); | 1493 | int c1 = MAKE_CHAR (charset, 0, 0); |
| 1494 | 1494 | ||