(wl-mime-combine-message/partial-pieces): Use
authorhmurata <hmurata>
Sun, 16 Oct 2005 12:58:21 +0000 (12:58 +0000)
committerhmurata <hmurata>
Sun, 16 Oct 2005 12:58:21 +0000 (12:58 +0000)
`make-local-variable' instead of `make-variable-buffer-local'.

wl/ChangeLog
wl/wl-mime.el

index c1b6c1e..0c19f25 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-16  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
+
+       * wl-mime.el (wl-mime-combine-message/partial-pieces): Use
+       `make-local-variable' instead of `make-variable-buffer-local'.
+
 2005-10-14  Yoichi NAKAYAMA  <yoichi@geiin.org>
 
        * wl.el (wl-exit): Call elmo-passwd-alist-clear at the end.
index 72e4dc4..3a99e45 100644 (file)
@@ -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)))