1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(thumbs-view-image-mode-map): Fix `thumbs-set-root' command name typo.

(thumbs-view-image-mode): Make buffer read-only.
This commit is contained in:
John Paul Wallington 2004-09-04 18:34:30 +00:00
parent 8f0d9e76ef
commit 288f8357fd

View file

@ -769,14 +769,15 @@ ACTION and ARG should be legal convert command."
(define-key map "r" 'thumbs-resize-interactive)
(define-key map "s" 'thumbs-save-current-image)
(define-key map "q" 'thumbs-kill-buffer)
(define-key map "w" 'thunbs-set-root)
(define-key map "w" 'thumbs-set-root)
map)
"Keymap for `thumbs-view-image-mode'.")
;; thumbs-view-image-mode
(put 'thumbs-view-image-mode 'mode-class 'special)
(define-derived-mode thumbs-view-image-mode
fundamental-mode "image-view-mode")
fundamental-mode "image-view-mode"
(setq buffer-read-only t))
;;;###autoload
(defun thumbs-dired-setroot ()