aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2010-07-20 12:29:05 +0200
committerMichael Albinus2010-07-20 12:29:05 +0200
commitda040a16153051de6359361bcc9727f97782b350 (patch)
treeb3ed74549f63fe1c5a8cc2e5ea732ebb77141627
parent72897ff9f7e5ab83d2cbf117f0afd7f9c506a5fe (diff)
downloademacs-da040a16153051de6359361bcc9727f97782b350.tar.gz
emacs-da040a16153051de6359361bcc9727f97782b350.zip
* net/tramp.el (tramp-perl-file-attributes)
(tramp-perl-directory-files-and-attributes): Don't pass "$3". (tramp-maybe-open-connection): Use `async-args' and `gw-args' in front of `login-args'.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/net/tramp.el9
2 files changed, 11 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2729668cea5..ecafde3d9bb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12010-07-20 Michael Albinus <michael.albinus@gmx.de>
2
3 * net/tramp.el (tramp-perl-file-attributes)
4 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
5 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
6 front of `login-args'.
7
12010-07-19 Juanma Barranquero <lekktu@gmail.com> 82010-07-19 Juanma Barranquero <lekktu@gmail.com>
2 9
3 * time.el (display-time-world-mode): Define with `define-derived-mode'. 10 * time.el (display-time-world-mode): Define with `define-derived-mode'.
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 4bda4bc0cd3..e6c59ee448c 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -1787,7 +1787,7 @@ printf(
1787 $stat[2], 1787 $stat[2],
1788 $stat[1] >> 16 & 0xffff, 1788 $stat[1] >> 16 & 0xffff,
1789 $stat[1] & 0xffff 1789 $stat[1] & 0xffff
1790);' \"$1\" \"$2\" \"$3\" 2>/dev/null" 1790);' \"$1\" \"$2\" 2>/dev/null"
1791 "Perl script to produce output suitable for use with `file-attributes' 1791 "Perl script to produce output suitable for use with `file-attributes'
1792on the remote file system. 1792on the remote file system.
1793Escape sequence %s is replaced with name of Perl binary. 1793Escape sequence %s is replaced with name of Perl binary.
@@ -1840,7 +1840,7 @@ for($i = 0; $i < $n; $i++)
1840 $stat[0] >> 16 & 0xffff, 1840 $stat[0] >> 16 & 0xffff,
1841 $stat[0] & 0xffff); 1841 $stat[0] & 0xffff);
1842} 1842}
1843printf(\")\\n\");' \"$1\" \"$2\" \"$3\" 2>/dev/null" 1843printf(\")\\n\");' \"$1\" \"$2\" 2>/dev/null"
1844 "Perl script implementing `directory-files-attributes' as Lisp `read'able 1844 "Perl script implementing `directory-files-attributes' as Lisp `read'able
1845output. 1845output.
1846Escape sequence %s is replaced with name of Perl binary. 1846Escape sequence %s is replaced with name of Perl binary.
@@ -7533,11 +7533,11 @@ connection if a previous connection has died for some reason."
7533 7533
7534 ;; Add arguments for asynchrononous processes. 7534 ;; Add arguments for asynchrononous processes.
7535 (when (and process-name async-args) 7535 (when (and process-name async-args)
7536 (setq login-args (append login-args async-args))) 7536 (setq login-args (append async-args login-args)))
7537 7537
7538 ;; Add gateway arguments if necessary. 7538 ;; Add gateway arguments if necessary.
7539 (when (and gw gw-args) 7539 (when (and gw gw-args)
7540 (setq login-args (append login-args gw-args))) 7540 (setq login-args (append gw-args login-args)))
7541 7541
7542 ;; Check for port number. Until now, there's no need 7542 ;; Check for port number. Until now, there's no need
7543 ;; for handling like method, user, host. 7543 ;; for handling like method, user, host.
@@ -8858,7 +8858,6 @@ Only works for Bourne-like shells."
8858;; by the files in that directory. Add this here. 8858;; by the files in that directory. Add this here.
8859;; * Avoid screen blanking when hitting `g' in dired. (Eli Tziperman) 8859;; * Avoid screen blanking when hitting `g' in dired. (Eli Tziperman)
8860;; * Make ffap.el grok Tramp filenames. (Eli Tziperman) 8860;; * Make ffap.el grok Tramp filenames. (Eli Tziperman)
8861;; * Case-insensitive filename completion. (Norbert Goevert.)
8862;; * Don't use globbing for directories with many files, as this is 8861;; * Don't use globbing for directories with many files, as this is
8863;; likely to produce long command lines, and some shells choke on 8862;; likely to produce long command lines, and some shells choke on
8864;; long command lines. 8863;; long command lines.