aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/character.c5
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.