From: Stefan Monnier Date: Tue, 31 May 2005 13:27:27 +0000 (+0000) Subject: (thumbs-mode): Fix misuse of make-variable-buffer-local. X-Git-Tag: emacs-pretest-22.0.90~9389 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=abceae284ab1804290e67bd1d8ac1b09a8b8a315;p=emacs.git (thumbs-mode): Fix misuse of make-variable-buffer-local. --- diff --git a/lisp/thumbs.el b/lisp/thumbs.el index 03491873c9d..321fe7266cc 100644 --- a/lisp/thumbs.el +++ b/lisp/thumbs.el @@ -758,9 +758,8 @@ ACTION and ARG should be a valid convert command." (define-derived-mode thumbs-mode fundamental-mode "thumbs" "Preview images in a thumbnails buffer" - (make-variable-buffer-local 'thumbs-markedL) (setq buffer-read-only t) - (setq thumbs-markedL nil)) + (set (make-local-variable 'thumbs-markedL) nil)) (defvar thumbs-view-image-mode-map (let ((map (make-sparse-keymap))) @@ -797,7 +796,5 @@ ACTION and ARG should be a valid convert command." (provide 'thumbs) +;; arch-tag: f9ac1ef8-83fc-42c0-8069-1fae43fd2e5c ;;; thumbs.el ends here - - -;;; arch-tag: f9ac1ef8-83fc-42c0-8069-1fae43fd2e5c