]> git.eshelyaron.com Git - emacs.git/commitdiff
(thumbs-mode): Fix misuse of make-variable-buffer-local.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 31 May 2005 13:27:27 +0000 (13:27 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 31 May 2005 13:27:27 +0000 (13:27 +0000)
lisp/thumbs.el

index 03491873c9daf51214e6b6f4e8ec9eed77555e94..321fe7266cc4d7377b9196c930406275ac8b0538 100644 (file)
@@ -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