* wl-vars.el: (wl-biff-state-indicator-off): Changed default value for
authoryamaoka <yamaoka>
Mon, 24 Sep 2001 23:01:05 +0000 (23:01 +0000)
committeryamaoka <yamaoka>
Mon, 24 Sep 2001 23:01:05 +0000 (23:01 +0000)
 xemacs with non-mule environment.

wl/ChangeLog
wl/wl-vars.el

index 0658105..3585d5d 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * wl-vars.el: (wl-biff-state-indicator-off): Changed default value
+       for xemacs with non-mule environment.
+
 2001-09-21  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * wl-vars.el (wl-interactive-send): Set default value as t.
index 3802b17..c455669 100644 (file)
@@ -1470,7 +1470,15 @@ every intervals specified by wl-biff-check-interval."
   :type 'string
   :group 'wl-highlight)
 
-(defcustom wl-biff-state-indicator-off "[\e$B!>\e(B]"
+(defcustom wl-biff-state-indicator-off (if (and (featurep 'xemacs)
+                                               (not (featurep 'mule)))
+                                          "[--]"
+                                        (decode-coding-string
+                                         ;; Japanese short hyphen
+                                         (read "\"[\e$B!>\e(B]\"")
+                                         (if (boundp 'MULE)
+                                             '*iso-2022-jp*
+                                           'iso-2022-jp)))
   "String used to show biff status OFF."
   :type 'string
   :group 'wl-highlight)