]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorKenichi Handa <handa@m17n.org>
Tue, 24 Oct 2000 00:09:09 +0000 (00:09 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 24 Oct 2000 00:09:09 +0000 (00:09 +0000)
src/syntax.c

index 7adb611cefdc74ed02c55ca6c61384fbc5dc82b5..758bec2cf92a5b8db36ba3cc8f86e4c413751a30 100644 (file)
@@ -1496,12 +1496,12 @@ skip_chars (forwardp, syntaxp, string, lim)
                {
                  if (! SINGLE_BYTE_CHAR_P (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.  */
+                     /* Handle a range starting with a character of
+                        less than 256, and ending with a character of
+                        not less than 256.  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);