aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net
diff options
context:
space:
mode:
authorMichael Albinus <[email protected]>2007-08-05 12:43:06 +0000
committerMichael Albinus <[email protected]>2007-08-05 12:43:06 +0000
commit6435918d3d459eba7c11d5cc4b0116285f196b28 (patch)
tree02acd185676c6f9a9adc1cd06e0c74817a593526 /lisp/net
parent212b7268410aaf5bf4820a6c5e20eccedb7a4f32 (diff)
* net/tramp.el (tramp-handle-file-remote-p): Return a string as
remote identification.
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/tramp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 03e97b747d..9f665ca470 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -3872,7 +3872,7 @@ This will break if COMMAND prints a newline, followed by the value of
"Like `file-remote-p' for tramp files."
(when (tramp-tramp-file-p filename)
(with-parsed-tramp-file-name filename nil
- (vector multi-method method user host ""))))
+ (tramp-make-tramp-file-name multi-method method user host ""))))
(defun tramp-handle-insert-file-contents
(filename &optional visit beg end replace)