* riece-coding.el (riece-default-coding-system): Fixed the last change.
authorYoichi NAKAYAMA <yoichi@geiin.org>
Sun, 22 Jun 2003 14:30:35 +0000 (14:30 +0000)
committerYoichi NAKAYAMA <yoichi@geiin.org>
Sun, 22 Jun 2003 14:30:35 +0000 (14:30 +0000)
emacs21 returns nil for (featurep 'file-coding.

lisp/ChangeLog
lisp/riece-coding.el

index bad95d4..44ce143 100644 (file)
@@ -3,8 +3,7 @@
        * riece-log.el, riece-mini.el, riece-unread.el, riece-url.el:
        Fix example setting, don't use 3rd arg of add-to-list.
 
        * riece-log.el, riece-mini.el, riece-unread.el, riece-url.el:
        Fix example setting, don't use 3rd arg of add-to-list.
 
-       * riece-coding.el (riece-default-coding-system): Fix default value
-       for XEmacs without mule.
+       * riece-coding.el (riece-default-coding-system): Fix default value.
 
 2003-06-17  OHASHI Akira  <bg66@koka-in.org>
 
 
 2003-06-17  OHASHI Akira  <bg66@koka-in.org>
 
index 8b3921c..6b0fa35 100644 (file)
@@ -33,8 +33,7 @@
   :group 'riece)
   
 (defcustom riece-default-coding-system
   :group 'riece)
   
 (defcustom riece-default-coding-system
-  (if (and (featurep 'mule)
-          (featurep 'file-coding))
+  (if (featurep 'mule)
       (cons 'ctext 'iso-2022-jp-2))
   "Coding system for process I/O.
 The value is a coding system, or a cons cell (DECODING . ENCODING)
       (cons 'ctext 'iso-2022-jp-2))
   "Coding system for process I/O.
 The value is a coding system, or a cons cell (DECODING . ENCODING)