diff options
| author | Kenichi Handa | 2002-08-20 11:11:19 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-08-20 11:11:19 +0000 |
| commit | 67dde6602c951feee2e578014848607f9ea1944d (patch) | |
| tree | a86a50612453d024f08c7bde247954bf5904b649 /src | |
| parent | 5b89f1091705d149264380867f62aa74b8a982e0 (diff) | |
| download | emacs-67dde6602c951feee2e578014848607f9ea1944d.tar.gz emacs-67dde6602c951feee2e578014848607f9ea1944d.zip | |
(syms_of_character): Setup Vprintable_chars.
Diffstat (limited to 'src')
| -rw-r--r-- | src/character.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/character.c b/src/character.c index fb1c76cbaee..6f84fb4ccc3 100644 --- a/src/character.c +++ b/src/character.c | |||
| @@ -916,6 +916,11 @@ A char-table for width (columns) of each character. */); | |||
| 916 | DEFVAR_LISP ("printable-chars", &Vprintable_chars, | 916 | DEFVAR_LISP ("printable-chars", &Vprintable_chars, |
| 917 | doc: /* A char-table for each printable character. */); | 917 | doc: /* A char-table for each printable character. */); |
| 918 | Vprintable_chars = Fmake_char_table (Qnil, Qnil); | 918 | Vprintable_chars = Fmake_char_table (Qnil, Qnil); |
| 919 | Fset_char_table_range (Vprintable_chars, | ||
| 920 | Fcons (make_number (32), make_number (126)), Qt); | ||
| 921 | Fset_char_table_range (Vprintable_chars, | ||
| 922 | Fcons (make_number (160), | ||
| 923 | make_number (MAX_5_BYTE_CHAR)), Qt); | ||
| 919 | 924 | ||
| 920 | DEFVAR_LISP ("char-script-table", &Vchar_script_table, | 925 | DEFVAR_LISP ("char-script-table", &Vchar_script_table, |
| 921 | doc: /* Char table of script symbols. | 926 | doc: /* Char table of script symbols. |