comparison src/syntax.c @ 32496:bcdb8c8a0fb2

Fix wording in a comment.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 15 Oct 2000 05:55:40 +0000
parents 3819d0d851cb
children a85522b7799c
comparison
equal deleted inserted replaced
32495:b5e119e4bfcb 32496:bcdb8c8a0fb2
1481 1481
1482 if (SINGLE_BYTE_CHAR_P (c)) 1482 if (SINGLE_BYTE_CHAR_P (c))
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
1495 char_ranges[n_char_ranges++] = c1; 1495 char_ranges[n_char_ranges++] = c1;
1496 char_ranges[n_char_ranges++] = c2; 1496 char_ranges[n_char_ranges++] = c2;