aboutsummaryrefslogtreecommitdiffstats
path: root/src/character.c
diff options
context:
space:
mode:
authorDave Love2002-07-16 14:59:03 +0000
committerDave Love2002-07-16 14:59:03 +0000
commit6cc0e1cacb63de8e7a506044fc3d9c8ee7e221dc (patch)
tree46ff6a75f3f1825290b7a811d3bacf4ebfe312be /src/character.c
parent501d7ac6bb9dadba0b7bca08ebd9cbe113d885ee (diff)
downloademacs-6cc0e1cacb63de8e7a506044fc3d9c8ee7e221dc.tar.gz
emacs-6cc0e1cacb63de8e7a506044fc3d9c8ee7e221dc.zip
(syms_of_character): Fix CHAR_TABLE_SET call.
Diffstat (limited to 'src/character.c')
-rw-r--r--src/character.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/character.c b/src/character.c
index aa279183e77..07a50ce797c 100644
--- a/src/character.c
+++ b/src/character.c
@@ -896,8 +896,8 @@ An ID of a translation table is an index of this vector. */);
896A char-table for characters which invoke auto-filling. 896A char-table for characters which invoke auto-filling.
897Such characters have value t in this table. */); 897Such characters have value t in this table. */);
898 Vauto_fill_chars = Fmake_char_table (Qauto_fill_chars, Qnil); 898 Vauto_fill_chars = Fmake_char_table (Qauto_fill_chars, Qnil);
899 CHAR_TABLE_SET (Vauto_fill_chars, make_number (' '), Qt); 899 CHAR_TABLE_SET (Vauto_fill_chars, ' ', Qt);
900 CHAR_TABLE_SET (Vauto_fill_chars, make_number ('\n'), Qt); 900 CHAR_TABLE_SET (Vauto_fill_chars, '\n', Qt);
901 901
902 DEFVAR_LISP ("char-width-table", &Vchar_width_table, 902 DEFVAR_LISP ("char-width-table", &Vchar_width_table,
903 doc: /* 903 doc: /*