Make truncate-partial-width-windows buffer local and set it to nil.
authoryoichi <yoichi>
Fri, 5 Oct 2001 07:43:22 +0000 (07:43 +0000)
committeryoichi <yoichi>
Fri, 5 Oct 2001 07:43:22 +0000 (07:43 +0000)
wl/ChangeLog
wl/wl-draft.el
wl/wl-message.el

index f2bb218..3ce33fe 100644 (file)
@@ -1,3 +1,10 @@
+2001-10-05  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
+
+       * wl-draft.el (wl-draft): Make truncate-partial-width-windows
+       buffer local and set it to nil.
+
+       * wl-message.el (wl-message-redisplay): Ditto.
+
 2001-10-03  Yuuichi Teranishi  <teranisi@gohome.org>
 
        * wl-summary.el (wl-summary-mark-as-important): If message is
index debb596..28399c1 100644 (file)
@@ -1352,6 +1352,8 @@ If KILL-WHEN-DONE is non-nil, current draft buffer is killed"
        (delete-other-windows))
     (auto-save-mode -1)
     (wl-draft-mode)
+    (make-local-variable 'truncate-partial-width-windows)
+    (setq truncate-partial-width-windows nil)
     (setq truncate-lines wl-draft-truncate-lines)
     (setq wl-sent-message-via nil)
     (if (stringp (or from wl-from))
index 1ed057e..d722547 100644 (file)
@@ -425,6 +425,8 @@ Returns non-nil if bottom of message."
     (wl-message-select-buffer wl-message-buffer)
 
     (set-buffer message-buf)
+    (make-local-variable 'truncate-partial-width-windows)
+    (setq truncate-partial-width-windows nil)
     (setq truncate-lines wl-message-truncate-lines)
     (setq buffer-read-only nil)
     (setq wl-message-buffer-cur-summary-buffer summary-buf)