diff options
| author | Morgan Smith <Morgan.J.Smith@outlook.com> | 2026-02-16 11:52:00 -0500 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-03-01 17:38:53 +0100 |
| commit | 744247a0fe6c23ebda84a2f115bd254711cfbc4e (patch) | |
| tree | 4e2ef20cb30589934d2945c694112c135d363694 | |
| parent | a2e78ef6613594f36851c91559c6aa34972f5b48 (diff) | |
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 <liliana.prikler@gmail.com>
| -rw-r--r-- | gnu/packages/emacs.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1a829737a5e..7121fb62153 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 _ |
