]> git.eshelyaron.com Git - emacs.git/commitdiff
Restore `ff-find-other-file' buffer selection logic
authorStephen Leake <stephen_leake@stephe-leake.org>
Tue, 25 May 2021 20:26:42 +0000 (22:26 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 25 May 2021 20:26:42 +0000 (22:26 +0200)
* lisp/find-file.el (ff-find-other-file): Restore selection of
buffer changed by previous change (bug#48535).

lisp/find-file.el

index 6c3c0f123b1e108df30f5d8192e936f6b34dfaf5..4fd4f4e06b89ea9d4b2ed19aa96a38824844b953 100644 (file)
@@ -305,6 +305,10 @@ Being on a `#include' line pulls in that file.
 If optional IN-OTHER-WINDOW is non-nil, find the file in the other window.
 If optional IGNORE-INCLUDE is non-nil, ignore being on `#include' lines.
 
+If optional EVENT is non-nil (default `last-nonmenu-event', move
+point to the end position of that event before calling the
+various ff-* hooks.
+
 Variables of interest include:
 
  - `ff-case-fold-search'
@@ -351,10 +355,16 @@ Variables of interest include:
  - `ff-file-created-hook'
    List of functions to be called if the other file has been created."
   (interactive (list current-prefix-arg nil last-nonmenu-event))
-  (save-excursion
+  ;; We want to preserve point in the current buffer. But the point of
+  ;; ff-find-the-other-file is to make the the other file buffer
+  ;; current, so we can't use save-excursion here (see bug 48535).
+  (let ((start-buffer (current-buffer))
+        (start-point (point)))
     (posn-set-point (event-end event))
     (let ((ff-ignore-include ignore-include))
-      (ff-find-the-other-file in-other-window))))
+      (ff-find-the-other-file in-other-window))
+    (with-current-buffer start-buffer
+      (goto-char start-point))))
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Support functions