emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 21ebfa1: Update default-directory in occur buffer (bug#39608)


From: Juri Linkov
Subject: master 21ebfa1: Update default-directory in occur buffer (bug#39608)
Date: Tue, 3 Mar 2020 19:06:16 -0500 (EST)

branch: master
commit 21ebfa1dd8129420c832031d055c708075aec02c
Author: Stéphane Boucher <address@hidden>
Commit: Juri Linkov <address@hidden>

    Update default-directory in occur buffer (bug#39608)
    
    * lisp/replace.el (occur-1): Update default-directory in occur buffer.
    
    Copyright-paperwork-exempt: yes
---
 lisp/replace.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lisp/replace.el b/lisp/replace.el
index a0b0506..168ccf2 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -1576,7 +1576,8 @@ See also `multi-occur'."
                                          (and (overlayp boo)
                                               (overlay-buffer boo)))
                                  boo))
-                          bufs))))
+                           bufs)))
+        (source-buffer-default-directory default-directory))
     ;; Handle the case where one of the buffers we're searching is the
     ;; output buffer.  Just rename it.
     (when (member buf-name
@@ -1593,6 +1594,9 @@ See also `multi-occur'."
     (setq occur-buf (get-buffer-create buf-name))
 
     (with-current-buffer occur-buf
+      ;; Make the default-directory of the *Occur* buffer match that of
+      ;; the buffer where the occurences come from
+      (setq default-directory source-buffer-default-directory)
       (if (stringp nlines)
          (fundamental-mode) ;; This is for collect operation.
        (occur-mode))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]