(vars_of_cmds): Use `put_char_id_table_0' for `Vauto_fill_chars' in
authortomo <tomo>
Sun, 2 Sep 2001 14:10:18 +0000 (14:10 +0000)
committertomo <tomo>
Sun, 2 Sep 2001 14:10:18 +0000 (14:10 +0000)
XEmacs UTF-2000.

src/cmds.c

index 881bb63..b30d6cd 100644 (file)
@@ -524,6 +524,11 @@ A char-table for characters which invoke auto-filling.
 Such characters have value t in this table.
 */);
   Vauto_fill_chars = Fmake_char_table (Qgeneric);
+#ifdef UTF2000
+  put_char_id_table_0 (XCHAR_TABLE (Vauto_fill_chars), ' ', Qt);
+  put_char_id_table_0 (XCHAR_TABLE (Vauto_fill_chars), '\n', Qt);
+#else
   XCHAR_TABLE (Vauto_fill_chars)->ascii[' '] = Qt;
   XCHAR_TABLE (Vauto_fill_chars)->ascii['\n'] = Qt;
+#endif
 }