]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp-sh.el (tramp-methods): Add recursive options to "scpc"
authorMichael Albinus <michael.albinus@gmx.de>
Fri, 31 Dec 2010 19:57:05 +0000 (20:57 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Fri, 31 Dec 2010 19:57:05 +0000 (20:57 +0100)
and "scpx".

lisp/ChangeLog
lisp/net/tramp-sh.el

index 6a7bcf9745b32b6d6e9da26a5b09eb94715e6e54..8e693845a4ffe844db34c927dcfa3bc88804ff3f 100644 (file)
@@ -1,3 +1,8 @@
+2010-12-31  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-sh.el (tramp-methods): Add recursive options to "scpc"
+       and "scpx".
+
 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
 
        * doc-view.el (doc-view-set-doc-type): New function refactored
index 86948bbc69bc68a9b184c56341e81024e68764c1..9950709bd7a08a3eba1debe3d92d333553e0aa56 100644 (file)
@@ -161,10 +161,11 @@ detected as prompt when being sent on echoing hosts, therefore.")
     (tramp-async-args           (("-q")))
     (tramp-remote-sh            "/bin/sh")
     (tramp-copy-program         "scp")
-    (tramp-copy-args            (("-P" "%p") ("%k" "-p") ("-q")
+    (tramp-copy-args            (("-P" "%p") ("%k" "-p") ("-q") ("-r")
                                 ("-o" "ControlPath=%t.%%r@%%h:%%p")
                                 ("-o" "ControlMaster=auto")))
     (tramp-copy-keep-date       t)
+    (tramp-copy-recursive       t)
     (tramp-gw-args              (("-o" "GlobalKnownHostsFile=/dev/null")
                                 ("-o" "UserKnownHostsFile=/dev/null")
                                 ("-o" "StrictHostKeyChecking=no")))
@@ -179,8 +180,9 @@ detected as prompt when being sent on echoing hosts, therefore.")
     (tramp-async-args           (("-q")))
     (tramp-remote-sh            "/bin/sh")
     (tramp-copy-program         "scp")
-    (tramp-copy-args            (("%k" "-p")))
+    (tramp-copy-args            (("-P" "%p") ("%k" "-p") ("-q") ("-r")))
     (tramp-copy-keep-date       t)
+    (tramp-copy-recursive       t)
     (tramp-gw-args              (("-o" "GlobalKnownHostsFile=/dev/null")
                                 ("-o" "UserKnownHostsFile=/dev/null")
                                 ("-o" "StrictHostKeyChecking=no")))