+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
;; 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
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))