XEmacs 21.4.20 "Double Solitaire".
[chise/xemacs-chise.git.1] / src / cmds.c
index ec8d39e..82a0675 100644 (file)
@@ -1,6 +1,5 @@
 /* Simple built-in editing commands.
    Copyright (C) 1985, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
-   Copyright (C) 2001 MORIOKA Tomohiko
 
 This file is part of XEmacs.
 
@@ -376,11 +375,7 @@ internal_self_insert (Emchar c1, int noautofill)
   int tab_width;
 
   overwrite = buf->overwrite_mode;
-#ifdef UTF2000
-  syntax_table = XCHAR_TABLE (buf->syntax_table);
-#else
   syntax_table = XCHAR_TABLE (buf->mirror_syntax_table);
-#endif
 
 #if 0
   /* No, this is very bad, it makes undo *always* undo a character at a time
@@ -554,11 +549,6 @@ 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
 }