From bf6be507fc2ac3f71e004ad0ee0917e8614f9031 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 24 Sep 2001 23:01:10 +0000 Subject: [PATCH] * wl-vars.el: (wl-biff-state-indicator-off): Changed default value for xemacs with non-mule environment. --- wl/ChangeLog | 5 +++++ wl/wl-vars.el | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) 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) -- 1.7.10.4