1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 10:31:37 -08:00

(syms_of_character): Fix CHAR_TABLE_SET call.

This commit is contained in:
Dave Love 2002-07-16 14:59:03 +00:00
parent 501d7ac6bb
commit 6cc0e1cacb

View file

@ -896,8 +896,8 @@ An ID of a translation table is an index of this vector. */);
A char-table for characters which invoke auto-filling.
Such characters have value t in this table. */);
Vauto_fill_chars = Fmake_char_table (Qauto_fill_chars, Qnil);
CHAR_TABLE_SET (Vauto_fill_chars, make_number (' '), Qt);
CHAR_TABLE_SET (Vauto_fill_chars, make_number ('\n'), Qt);
CHAR_TABLE_SET (Vauto_fill_chars, ' ', Qt);
CHAR_TABLE_SET (Vauto_fill_chars, '\n', Qt);
DEFVAR_LISP ("char-width-table", &Vchar_width_table,
doc: /*