1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-24 15:22:26 -07:00

*** empty log message ***

This commit is contained in:
Kenichi Handa 2000-10-24 00:09:09 +00:00
parent 3090a5a5bc
commit 7ae339a717

View 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);