]> git.eshelyaron.com Git - emacs.git/commitdiff
Bind k to image-kill-buffer in doc-view-mode-map.
authorTassilo Horn <tsdh@gnu.org>
Fri, 11 Dec 2020 09:24:58 +0000 (10:24 +0100)
committerTassilo Horn <tsdh@gnu.org>
Fri, 11 Dec 2020 09:24:58 +0000 (10:24 +0100)
* lisp/doc-view.el (doc-view-mode-map): Bind k to image-kill-buffer.
The binding k -> doc-view-kill-proc-and-buffer has been removed in
2015 and the function been made an obsolete function alias to
image-kill-buffer (bug#45157).

lisp/doc-view.el

index b895377f8dcd4b73c18abe41a93d6a5a9d1e8998..031e46a1c9dec940bc92b868ef38b4bc922f6096 100644 (file)
@@ -432,6 +432,7 @@ Typically \"page-%s.png\".")
     (define-key map "P"               'doc-view-fit-page-to-window)
     (define-key map "F"               'doc-view-fit-window-to-page) ;F = frame
     ;; Killing the buffer (and the process)
+    (define-key map (kbd "k")         'image-kill-buffer)
     (define-key map (kbd "K")         'doc-view-kill-proc)
     ;; Slicing the image
     (define-key map (kbd "c s")       'doc-view-set-slice)