From: hmurata Date: Sun, 16 Oct 2005 12:58:21 +0000 (+0000) Subject: (wl-mime-combine-message/partial-pieces): Use X-Git-Tag: wl-2_15_3~45 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=1c690712b51cb48c4a3afdf9a5845528bdf3415c;p=elisp%2Fwanderlust.git (wl-mime-combine-message/partial-pieces): Use `make-local-variable' instead of `make-variable-buffer-local'. --- 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)))