diff options
| author | Michael Albinus | 2007-08-05 12:43:06 +0000 |
|---|---|---|
| committer | Michael Albinus | 2007-08-05 12:43:06 +0000 |
| commit | 6435918d3d459eba7c11d5cc4b0116285f196b28 (patch) | |
| tree | 02acd185676c6f9a9adc1cd06e0c74817a593526 /lisp/net | |
| parent | 212b7268410aaf5bf4820a6c5e20eccedb7a4f32 (diff) | |
| download | emacs-6435918d3d459eba7c11d5cc4b0116285f196b28.tar.gz emacs-6435918d3d459eba7c11d5cc4b0116285f196b28.zip | |
* 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.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 03e97b747da..9f665ca4707 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 | |||
| 3872 | "Like `file-remote-p' for tramp files." | 3872 | "Like `file-remote-p' for tramp files." |
| 3873 | (when (tramp-tramp-file-p filename) | 3873 | (when (tramp-tramp-file-p filename) |
| 3874 | (with-parsed-tramp-file-name filename nil | 3874 | (with-parsed-tramp-file-name filename nil |
| 3875 | (vector multi-method method user host "")))) | 3875 | (tramp-make-tramp-file-name multi-method method user host "")))) |
| 3876 | 3876 | ||
| 3877 | (defun tramp-handle-insert-file-contents | 3877 | (defun tramp-handle-insert-file-contents |
| 3878 | (filename &optional visit beg end replace) | 3878 | (filename &optional visit beg end replace) |