From 744247a0fe6c23ebda84a2f115bd254711cfbc4e Mon Sep 17 00:00:00 2001 From: Morgan Smith Date: Mon, 16 Feb 2026 11:52:00 -0500 Subject: [PATCH] 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 --- 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 _