* wl-vars.el (wl-mime-charset): Change default value for XEmacs
authoryoichi <yoichi>
Sun, 10 Oct 2004 17:14:28 +0000 (17:14 +0000)
committeryoichi <yoichi>
Sun, 10 Oct 2004 17:14:28 +0000 (17:14 +0000)
without mule to iso-8859-1.
(wl-draft-add-in-reply-to): Add note in description.
(wl-draft-add-references): Ditto.

wl/ChangeLog
wl/wl-vars.el

index 053f8ef..b47d5a2 100644 (file)
@@ -1,3 +1,10 @@
+2004-10-10  Yoichi NAKAYAMA  <yoichi@geiin.org>
+
+       * wl-vars.el (wl-mime-charset): Change default value for XEmacs
+       without mule to iso-8859-1.
+       (wl-draft-add-in-reply-to): Add note in description.
+       (wl-draft-add-references): Ditto.
+
 2004-10-10  Yuuichi Teranishi  <teranisi@gohome.org>
 
        * wl-vars.el (wl-summary-mode-line-format-spec-alist): Changed
index 7fc69a9..59da329 100644 (file)
@@ -526,13 +526,15 @@ If nil, `wl-from' is used."
 
 (defcustom wl-draft-add-in-reply-to t
   "*If non-nil, message-id of the cited message is inserted to the
-in-reply-to field of the current draft."
+in-reply-to field of the current draft.
+Note: default value follows RFC2822."
   :type 'boolean
   :group 'wl)
 
 (defcustom wl-draft-add-references nil
   "*If non-nil, message-id of the cited message is inserted to the
-references field of the current draft."
+references field of the current draft.
+Note: default value follows RFC2822."
   :type 'boolean
   :group 'wl)
 
@@ -1906,7 +1908,7 @@ with wl-highlight-folder-many-face."
                (string :tag "Other"))
   :group 'wl-summary)
 
-(defcustom wl-mime-charset 'x-ctext
+(defcustom wl-mime-charset (if wl-on-mule 'x-ctext 'iso-8859-1)
   "*MIME Charset for summary and message."
   :type 'symbol
   :group 'wl-summary