diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/character.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/character.c b/src/character.c index 271a350db06..aa279183e77 100644 --- a/src/character.c +++ b/src/character.c | |||
| @@ -903,6 +903,9 @@ Such characters have value t in this table. */); | |||
| 903 | doc: /* | 903 | doc: /* |
| 904 | A char-table for width (columns) of each character. */); | 904 | A char-table for width (columns) of each character. */); |
| 905 | Vchar_width_table = Fmake_char_table (Qnil, make_number (1)); | 905 | Vchar_width_table = Fmake_char_table (Qnil, make_number (1)); |
| 906 | char_table_set_range (Vchar_width_table, 0x80, 0x9F, make_number (4)); | ||
| 907 | char_table_set_range (Vchar_width_table, MAX_5_BYTE_CHAR + 1, MAX_CHAR, | ||
| 908 | make_number (4)); | ||
| 906 | 909 | ||
| 907 | DEFVAR_LISP ("char-direction-table", &Vchar_direction_table, | 910 | DEFVAR_LISP ("char-direction-table", &Vchar_direction_table, |
| 908 | doc: /* A char-table for direction of each character. */); | 911 | doc: /* A char-table for direction of each character. */); |