1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-24 19:03:29 +00:00

Make C-l in iimage-mode call recenter-top-bottom

* lisp/iimage.el (iimage-recenter): Call `recenter-top-bottom'
instead of `recenter', since that's the default function for `C-l'
(bug#27610).  Suggested by Arne Frederic Maria Döring.
This commit is contained in:
Lars Ingebrigtsen 2019-06-24 18:25:56 +02:00
parent 18a7e5414c
commit 38502cd44d

View File

@ -90,7 +90,7 @@ Examples of image filename patterns to match:
(interactive "P")
(iimage-mode-buffer nil)
(iimage-mode-buffer t)
(recenter arg))
(recenter-top-bottom arg))
;;;###autoload
(define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1")