From: yamaoka Date: Mon, 24 Sep 2001 23:01:10 +0000 (+0000) Subject: * wl-vars.el: (wl-biff-state-indicator-off): Changed default value for X-Git-Tag: wl-2_7_5~50 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=bf6be507fc2ac3f71e004ad0ee0917e8614f9031;p=elisp%2Fwanderlust.git * wl-vars.el: (wl-biff-state-indicator-off): Changed default value for xemacs with non-mule environment. --- diff --git a/wl/ChangeLog b/wl/ChangeLog index 368fac1..bc780e0 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,8 @@ +2001-09-24 Katsumi Yamaoka + + * wl-vars.el: (wl-biff-state-indicator-off): Changed default value + for xemacs with non-mule environment. + 2001-09-23 TAKAHASHI Kaoru * wl-draft.el (wl-draft-strip-subject-re, wl-draft-kill) diff --git a/wl/wl-vars.el b/wl/wl-vars.el index 30f6eb3..b0a0238 100644 --- a/wl/wl-vars.el +++ b/wl/wl-vars.el @@ -1513,7 +1513,15 @@ every intervals specified by wl-biff-check-interval." :type 'string :group 'wl-highlight) -(defcustom wl-biff-state-indicator-off "[‐]" +(defcustom wl-biff-state-indicator-off (if (and (featurep 'xemacs) + (not (featurep 'mule))) + "[--]" + (decode-coding-string + ;; Japanese short hyphen + (read "\"[‐]\"") + (if (boundp 'MULE) + '*iso-2022-jp* + 'iso-2022-jp))) "String used to show biff status OFF." :type 'string :group 'wl-highlight)