Re: tramp (2.8.1-pre master/d208502e4c83b2509be84f334f4d3bc11aecbf7c); tramp-gvfs error due to recent change
Michael Albinus <[email protected]> Fri, 24 Oct 2025 09:51:34 +0200
| Newsgroups | gmane.emacs.tramp |
|---|---|
| Message-ID | <[email protected]> |
--=-=-= Content-Type: text/plain Stephen Berman <[email protected]> writes: Hi Stephen, > I've attached the compressed load histories from both Emacs > sessions (load-history_1 from the first shell invocation, load-history_2 > from the second one with `-l tramp'; I pretty-printed them for better > legibility and diffing). I've checked the load-history you've sent, and I've compared it with my load-history. No relevant differences. So it must be something different. Could you pls apply the appended patch, and rerun your failing test, again? --8<---------------cut here---------------start------------->8--- # src/emacs -Q --eval '(setq tramp-verbose 6)' /sftp:[email protected]:/b/bermasbp/ --8<---------------cut here---------------end--------------->8--- There will be a (looong) Tramp debug buffer which I would like to see. > Steve Berman Best regards, Michael. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 261fbc1139d..d95c42695c9 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -7156,7 +7156,11 @@ tramp-process-running-p (when (stringp process-name) (catch 'result (let ((default-directory temporary-file-directory)) + (when (string-match-p "fuse" process-name) + (tramp-test-message "process-name: %s" process-name)) (dolist (pid (list-system-processes)) + (when (string-match-p "fuse" process-name) + (tramp-test-message "%s" (process-attributes pid))) (and-let* ((attributes (process-attributes pid)) (comm (cdr (assoc 'comm attributes))) ((string-equal --=-=-=--