diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2007-07-08 18:03:20 +0000 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2007-07-08 18:03:20 +0000 |
commit | 00d6fd04d83f59b13c77aa999384367cde81b413 (patch) | |
tree | f2741d660d6034dc412be9fbd871c2eca7bcca72 /lisp/net/rcompile.el | |
parent | eaaa2b09e34721fccd783f73e45ca1f005e734d8 (diff) | |
download | emacs-00d6fd04d83f59b13c77aa999384367cde81b413.tar.gz |
* files.el (file-remote-p): Introduce optional parameter CONNECTED.
* net/tramp.el:
* net/tramp-ftp.el:
* net/tramp-smb.el:
* net/tramp-uu.el:
* net/trampver.el: Migrate to Tramp 2.1.
* net/tramp-cache.el:
* net/tramp-fish.el:
* net/tramp-gw.el: New Tramp packages.
* net/tramp-util.el:
* net/tramp-vc.el: Removed.
* net/ange-ftp.el: Add ange-ftp property to 'start-file-process
(ange-ftp-file-remote-p): Handle optional parameter CONNECTED.
* net/rcompile.el (remote-compile): Handle Tramp 2.1 arguments.
* progmodes/compile.el (compilation-start): Redefine
`start-process' temporarily when `default-directory' is remote.
Remove case of synchronous compilation, this won't happen ever.
(compilation-setup): Make local variable `comint-file-name-prefix'
for remote compilation.
Diffstat (limited to 'lisp/net/rcompile.el')
-rw-r--r-- | lisp/net/rcompile.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/net/rcompile.el b/lisp/net/rcompile.el index c262a129adc..9eecb8e4481 100644 --- a/lisp/net/rcompile.el +++ b/lisp/net/rcompile.el @@ -188,8 +188,7 @@ See \\[compile]." (when (featurep 'tramp) (set (make-local-variable 'comint-file-name-prefix) (funcall (symbol-function 'tramp-make-tramp-file-name) - nil ;; multi-method. To be removed with Tramp 2.1. - nil + nil ;; method. remote-compile-user remote-compile-host "")))))) |