* riece-coding.el (riece-default-coding-system): Fix default value
authorYoichi NAKAYAMA <yoichi@geiin.org>
Sun, 22 Jun 2003 07:22:29 +0000 (07:22 +0000)
committerYoichi NAKAYAMA <yoichi@geiin.org>
Sun, 22 Jun 2003 07:22:29 +0000 (07:22 +0000)
for XEmacs without mule.

lisp/ChangeLog
lisp/riece-coding.el

index 0dc3260..9868f0f 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-22  Yoichi NAKAYAMA  <yoichi@geiin.org>
+
+       * riece-coding.el (riece-default-coding-system): Fix default value
+       for XEmacs without mule.
+
 2003-06-17  OHASHI Akira  <bg66@koka-in.org>
 
        * riece-unread.el (riece-unread-display-message-function): Check a
 2003-06-17  OHASHI Akira  <bg66@koka-in.org>
 
        * riece-unread.el (riece-unread-display-message-function): Check a
index 9d14be1..8b3921c 100644 (file)
@@ -33,8 +33,8 @@
   :group 'riece)
   
 (defcustom riece-default-coding-system
   :group 'riece)
   
 (defcustom riece-default-coding-system
-  (if (and (or (featurep 'mule)
-              (featurep 'file-coding)))
+  (if (and (featurep 'mule)
+          (featurep 'file-coding))
       (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)