From 474b0d90b33bb40989a0897415c282e1994cdac1 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 24 Sep 2001 23:01:05 +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 0658105..3585d5d 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-21 TAKAHASHI Kaoru * wl-vars.el (wl-interactive-send): Set default value as t. diff --git a/wl/wl-vars.el b/wl/wl-vars.el index 3802b17..c455669 100644 --- a/wl/wl-vars.el +++ b/wl/wl-vars.el @@ -1470,7 +1470,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