From: Eli Zaretskii Date: Sun, 15 Oct 2000 05:55:40 +0000 (+0000) Subject: Fix wording in a comment. X-Git-Tag: emacs-pretest-21.0.90~874 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ef6d59c99e8390af85305d58119e311a15013e76;p=emacs.git Fix wording in a comment. --- 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) { if (! SINGLE_BYTE_CHAR_P (c2)) { - /* Handle a range starting by a unibyte char and - ending by a multibyte char. Split - that into two ranges, the low one ending at - 0377, and the high one starting at the - smallest character in the charset of C2 and - ending at C2. */ + /* Handle a range starting with a unibyte char + and ending with a multibyte char. Split that + into two ranges, the low one ending at 0377, + and the high one starting at the smallest + character in the charset of C2 and ending at + C2. */ int charset = CHAR_CHARSET (c2); int c1 = MAKE_CHAR (charset, 0, 0);