* wl-summary.el (wl-summary-mode): Set `show-trailing-whitespace' after boundp check.
authorkaoru <kaoru>
Thu, 11 Nov 2004 04:30:49 +0000 (04:30 +0000)
committerkaoru <kaoru>
Thu, 11 Nov 2004 04:30:49 +0000 (04:30 +0000)
wl/ChangeLog
wl/wl-summary.el

index bf4ddeb..0cfe909 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-11  TAKAHASHI Kaoru  <kaoru@kaisei.org>
+
+       * wl-summary.el (wl-summary-mode): Set `show-trailing-whitespace'
+       after boundp check.
+
 2004-11-07  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
 
        * wl-summary.el (wl-summary-mimic-kill-buffer): New command.
index 56ab4b9..efb6cb2 100644 (file)
@@ -880,7 +880,8 @@ Entering Folder mode calls the value of `wl-summary-mode-hook'."
 ;;;(setq default-directory (or wl-tmp-dir (expand-file-name "~/")))
   (setq buffer-read-only t)
   (setq truncate-lines t)
-  (setq show-trailing-whitespace nil)
+  (when (boundp 'show-trailing-whitespace)
+    (setq show-trailing-whitespace nil))
 ;;;(make-local-variable 'tab-width)
 ;;;(setq tab-width 1)
   (buffer-disable-undo (current-buffer))