From 1c690712b51cb48c4a3afdf9a5845528bdf3415c Mon Sep 17 00:00:00 2001 From: hmurata Date: Sun, 16 Oct 2005 12:58:21 +0000 Subject: [PATCH] (wl-mime-combine-message/partial-pieces): Use `make-local-variable' instead of `make-variable-buffer-local'. --- wl/ChangeLog | 5 +++++ wl/wl-mime.el | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/wl/ChangeLog b/wl/ChangeLog index c1b6c1e..0c19f25 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,8 @@ +2005-10-16 Hiroya Murata + + * wl-mime.el (wl-mime-combine-message/partial-pieces): Use + `make-local-variable' instead of `make-variable-buffer-local'. + 2005-10-14 Yoichi NAKAYAMA * wl.el (wl-exit): Call elmo-passwd-alist-clear at the end. diff --git a/wl/wl-mime.el b/wl/wl-mime.el index 72e4dc4..3a99e45 100644 --- a/wl/wl-mime.el +++ b/wl/wl-mime.el @@ -680,11 +680,11 @@ With ARG, ask destination folder." (with-current-buffer mother (mime-store-message/partial-piece entity situation) (setq wl-message-buffer-cur-summary-buffer summary-buf) - (make-variable-buffer-local 'mime-preview-over-to-next-method-alist) + (make-local-variable 'mime-preview-over-to-next-method-alist) (setq mime-preview-over-to-next-method-alist (cons (cons 'mime-show-message-mode 'wl-message-exit) mime-preview-over-to-next-method-alist)) - (make-variable-buffer-local 'mime-preview-over-to-previous-method-alist) + (make-local-variable 'mime-preview-over-to-previous-method-alist) (setq mime-preview-over-to-previous-method-alist (cons (cons 'mime-show-message-mode 'wl-message-exit) mime-preview-over-to-previous-method-alist))) -- 1.7.10.4