summaryrefslogtreecommitdiff
path: root/lisp/net/tramp-archive.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-07-24 09:55:01 +0200
committerStefan Kangas <stefan@marxist.se>2022-07-24 09:55:01 +0200
commita463dccdd0b33fd329419601eecddb109057233e (patch)
tree7cb5a254fe9e575ed344cff05d0be9ad83356647 /lisp/net/tramp-archive.el
parent279eb4e6ab0fb99cacdb504d37953d9630fae8b4 (diff)
parentb4067394dcf33d64e0372bf553cec5b6f9c4af1c (diff)
downloademacs-a463dccdd0b33fd329419601eecddb109057233e.tar.gz
emacs-a463dccdd0b33fd329419601eecddb109057233e.tar.bz2
emacs-a463dccdd0b33fd329419601eecddb109057233e.zip
Merge from origin/emacs-28
b4067394dc Set `default-directory' of Tramp archive connection buffer 2529e82002 ; * doc/lispref/functions.texi (Declare Form): Fix typo. 54c4ceb009 Update the documentation of 'declare' forms 7263631dca Fix bookmark support for Help functions in native-compilat... # Conflicts: # lisp/help.el
Diffstat (limited to 'lisp/net/tramp-archive.el')
-rw-r--r--lisp/net/tramp-archive.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/net/tramp-archive.el b/lisp/net/tramp-archive.el
index 119ac54dd29..47f14861e38 100644
--- a/lisp/net/tramp-archive.el
+++ b/lisp/net/tramp-archive.el
@@ -348,6 +348,13 @@ arguments to pass to the OPERATION."
(tramp-archive-run-real-handler
#'file-directory-p (list archive)))
(tramp-archive-run-real-handler operation args)
+ ;; The default directory of the Tramp connection buffer
+ ;; cannot be accessed. (Bug#56628)
+ ;; FIXME: It is superfluous to set it every single loop.
+ ;; But there is no place to set it when creating the buffer.
+ (with-current-buffer
+ (tramp-get-buffer (tramp-archive-dissect-file-name filename))
+ (setq default-directory (file-name-as-directory archive)))
;; Now run the handler.
(let ((tramp-methods (cons `(,tramp-archive-method) tramp-methods))
(tramp-gvfs-methods tramp-archive-all-gvfs-methods)