guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 744247a0fe6c23ebda84a2f115bd254711cfbc4e
Author: Morgan Smith <[email protected]>
AuthorDate: Mon Feb 16 11:52:00 2026 -0500
gnu: emacs: Fix tramp GVFS fix.
The function name got changed in upstream commit d3ead375092, dated
2020-01-31.
* gnu/packages/emacs.scm (emacs-minimal): Replace 'tramp-process-running-p',
not the now non-existant function 'tramp-compat-process-running-p'.
Change-Id: If2adff095b968b804729533fcdd188f5035f9eed
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1a829737a5..7121fb6215 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -293,8 +293,8 @@
;; match ".gvfs-fuse-daemon-real" and ".gvfsd-fuse-real"
;; respectively when looking for GVFS processes.
(substitute* "lisp/net/tramp-gvfs.el"
- (("\\(tramp-compat-process-running-p \"(.*)\"\\)" all process)
- (format #f "(or ~a (tramp-compat-process-running-p ~s))"
+ (("\\(tramp-process-running-p \"(.*)\"\\)" all process)
+ (format #f "(or ~a (tramp-process-running-p ~s))"
all (string-append "." process "-real"))))))
(add-before 'configure 'fix-/bin/pwd
(lambda _