unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob d979b113d0dee0c4a12b4e14cc1eb56a72a99389 1764 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 
From 3c0f4b27a079b90dc632f5061a81ce28cef24801 Mon Sep 17 00:00:00 2001
From: eryx67 <eryx67@gmail.com>
Date: Thu, 29 Nov 2018 10:30:20 +0500
Subject: [PATCH] fix for latest emacs

---
 dired-toggle-sudo.el | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dired-toggle-sudo.el b/dired-toggle-sudo.el
index 386921b..fe5898e 100644
--- a/dired-toggle-sudo.el
+++ b/dired-toggle-sudo.el
@@ -37,17 +37,20 @@
 unless SUDO-USER is provided."
   (let* (;; Handle the case of local files. `tramp-dissect-file-name' does
 	 ;; not raise an error anymore.
-	 (path (if (tramp-tramp-file-p path) path (concat "/:" path)))
+	 ;;(path (if (tramp-tramp-file-p path) path (concat "/-::" path)))
 	 (file-vec (or (ignore-errors (tramp-dissect-file-name
 				       path))
 		       (tramp-dissect-file-name
-			(concat "/:" path) 1)))
+			(concat "/-::" path) 1)))
 	 (method  (tramp-file-name-method file-vec))
 	 (user (tramp-file-name-user file-vec))
 	 (host  (tramp-file-name-host file-vec))
+         (domain  (tramp-file-name-domain file-vec))
+         (port  (tramp-file-name-port file-vec))
 	 (localname (expand-file-name
 		     (tramp-file-name-localname file-vec))))
-    (when (string= system-name host)
+    (when (or (string= (system-name) host)
+              (string= "-" host))
       (setq host nil))
     (cond
      ;; remote directory -> sudo
@@ -67,7 +70,7 @@ unless SUDO-USER is provided."
       (setq method "sudo" user sudo-user)))
     (replace-regexp-in-string
      "^/:/" "/"
-     (tramp-make-tramp-file-name method user host localname))))
+     (tramp-make-tramp-file-name method domain user host port localname))))
 
 (defun dired-toggle-sudo-find (fname)
   "Create a new buffer for file name FNAME."
-- 
2.22.0


debug log:

solving d979b113d0 ...
found d979b113d0 in https://git.savannah.gnu.org/cgit/guix.git

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).