]> git.eshelyaron.com Git - emacs.git/commitdiff
Some minor Tramp tweaks
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 28 Feb 2018 14:10:11 +0000 (15:10 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 28 Feb 2018 14:10:11 +0000 (15:10 +0100)
* lisp/net/tramp-adb.el (tramp-adb-get-ls-command): Fix docstring.

* lisp/net/tramp-sh.el (tramp-vc-registered-read-file-names):
Quote file.

* lisp/net/tramp.el (tramp-handle-substitute-in-file-name):
Make it more robust.

lisp/net/tramp-adb.el
lisp/net/tramp-sh.el
lisp/net/tramp.el

index cb80506786412711884d42cf8a24ceebdcb88b9e..7ac61b843ff9fcb04e6b79d57a78b4799d80a3c1 100644 (file)
@@ -458,7 +458,7 @@ pass to the OPERATION."
                           result)))))))))
 
 (defun tramp-adb-get-ls-command (vec)
-  "Determine `ls' command at its arguments."
+  "Determine `ls' command and its arguments."
   (with-tramp-connection-property vec "ls"
     (tramp-message vec 5 "Finding a suitable `ls' command")
     (cond
index ff5d404aaacefbca1389ecce17fe7ca024e4087d..f619ac30633a62dfefe97afaea44603f52e070c2 100644 (file)
@@ -962,15 +962,16 @@ busybox awk '{}' </dev/null"
 (defconst tramp-vc-registered-read-file-names
   "echo \"(\"
 while read file; do
+    quoted=`echo \"$file\" | sed -e \"s/\\\"/\\\\\\\\\\\\\\\\\\\"/\"`
     if %s \"$file\"; then
-       echo \"(\\\"$file\\\" \\\"file-exists-p\\\" t)\"
+       echo \"(\\\"$quoted\\\" \\\"file-exists-p\\\" t)\"
     else
-       echo \"(\\\"$file\\\" \\\"file-exists-p\\\" nil)\"
+       echo \"(\\\"$quoted\\\" \\\"file-exists-p\\\" nil)\"
     fi
     if %s \"$file\"; then
-       echo \"(\\\"$file\\\" \\\"file-readable-p\\\" t)\"
+       echo \"(\\\"$quoted\\\" \\\"file-readable-p\\\" t)\"
     else
-       echo \"(\\\"$file\\\" \\\"file-readable-p\\\" nil)\"
+       echo \"(\\\"$quoted\\\" \\\"file-readable-p\\\" nil)\"
     fi
 done
 echo \")\""
@@ -2054,6 +2055,7 @@ file names."
          (t2 (tramp-tramp-file-p newname))
          (length (tramp-compat-file-attribute-size
                   (file-attributes (file-truename filename))))
+         ;; `file-extended-attributes' exists since Emacs 24.4.
          (attributes (and preserve-extended-attributes
                           (apply 'file-extended-attributes (list filename)))))
 
index bae039dba13933d8e5dc4e58ede89fea920bee80..601123925372bd2361646948d242c0aac760a7d3 100644 (file)
@@ -3564,7 +3564,7 @@ support symbolic links."
                  (concat (file-remote-p filename)
                          (substitute-in-file-name localname))))))
       ;; "/m:h:~" does not work for completion.  We use "/m:h:~/".
-      (if (string-match "^~$" localname)
+      (if (and (stringp localname) (string-equal "~" localname))
          (concat filename "/")
        filename))))