]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "Fix problem of point movement in image-mode"
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 16 Feb 2021 16:42:24 +0000 (17:42 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 16 Feb 2021 16:42:24 +0000 (17:42 +0100)
This reverts commit 7c7377288a125ef47f2b422cf131f044a3b418e1.

This is fixed differently in Emacs 27.

lisp/image-mode.el

index 28b75c8113a8c41134e6dcdb23cf9ff51a93f7e6..ec0a559c8dba5e9bbd6eef68d0dee28f10c9cb5c 100644 (file)
@@ -611,7 +611,6 @@ Key bindings:
   (major-mode-suspend)
   (setq major-mode 'image-mode)
   (setq image-transform-resize image-auto-resize)
-  (setq-local disable-point-adjustment t)
 
   ;; Bail out early if we have no image data.
   (if (zerop (buffer-size))
@@ -932,7 +931,6 @@ If the current buffer is displaying an image file as an image,
 call `image-mode-as-text' to switch to text or hex display.
 Otherwise, display the image by calling `image-mode'."
   (interactive)
-  (goto-char (point-min))
   (if (image-get-display-property)
       (image-mode-as-text)
     (if (eq major-mode 'hexl-mode)