]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp.el (tramp-get-ls-command, tramp-get-file-exists-command)
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 12 Feb 2007 06:19:54 +0000 (06:19 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 12 Feb 2007 06:19:54 +0000 (06:19 +0000)
(tramp-get-remote-ln): Handle error case.  Reported by Chris Moore
<dooglus@gmail.com>.

lisp/ChangeLog
lisp/net/tramp.el

index 4d9f1b3c0476ffc1c628f42b9fdaf81321570599..d685e33b92283adc8ee761a37efe550cde5fc3da 100644 (file)
@@ -1,3 +1,9 @@
+2007-02-12  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el (tramp-get-ls-command, tramp-get-file-exists-command)
+       (tramp-get-remote-ln): Handle error case.  Reported by Chris Moore
+       <dooglus@gmail.com>.
+
 2007-02-11  Kim F. Storm  <storm@cua.dk>
 
        * bindings.el (ctl-x-map): Remove register compatibility bindings
index 257fbc4e47bb5b917b97ee28ad2cb934a4a37689..602c6d25eaa0957f0e92c3fc7336c474348f2332 100644 (file)
@@ -7105,10 +7105,12 @@ If both MULTI-METHOD and METHOD are nil, do a lookup in
 ;; Variables local to connection.
 
 (defun tramp-get-ls-command (multi-method method user host)
-  (save-excursion
-    (tramp-maybe-open-connection multi-method method user host)
-    (set-buffer (tramp-get-buffer multi-method method user host))
-    tramp-ls-command))
+  (or
+   (save-excursion
+     (tramp-maybe-open-connection multi-method method user host)
+     (set-buffer (tramp-get-buffer multi-method method user host))
+     tramp-ls-command)
+   (error "Couldn't find remote `ls' command")))
 
 (defun tramp-get-test-groks-nt (multi-method method user host)
   (save-excursion
@@ -7117,16 +7119,20 @@ If both MULTI-METHOD and METHOD are nil, do a lookup in
     tramp-test-groks-nt))
 
 (defun tramp-get-file-exists-command (multi-method method user host)
-  (save-excursion
-    (tramp-maybe-open-connection multi-method method user host)
-    (set-buffer (tramp-get-buffer multi-method method user host))
-    tramp-file-exists-command))
+  (or
+   (save-excursion
+     (tramp-maybe-open-connection multi-method method user host)
+     (set-buffer (tramp-get-buffer multi-method method user host))
+     tramp-file-exists-command)
+   (error "Couldn't find remote `test -e' command")))
 
 (defun tramp-get-remote-perl (multi-method method user host)
   (tramp-get-connection-property "perl" nil multi-method method user host))
 
 (defun tramp-get-remote-ln (multi-method method user host)
-  (tramp-get-connection-property "ln" nil multi-method method user host))
+  (or
+   (tramp-get-connection-property "ln" nil multi-method method user host)
+   (error "Couldn't find remote `ln' command")))
 
 (defun tramp-get-remote-uid (multi-method method user host)
   (tramp-get-connection-property "uid" nil multi-method method user host))