aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEric Hanchrow2012-01-20 21:12:38 +0100
committerMichael Albinus2012-01-20 21:12:38 +0100
commit02dc2fd7cb75297953625d219e9fc94f0ecebc08 (patch)
treed372e277dfe3919ebed7276a6eb0d7fcbc0a1734 /doc
parentdd6e3cdd5aa93d7c5125bad0b22cce71df5f04d0 (diff)
downloademacs-02dc2fd7cb75297953625d219e9fc94f0ecebc08.tar.gz
emacs-02dc2fd7cb75297953625d219e9fc94f0ecebc08.zip
* tramp.texi (File): Tweak wording for the `scpc' option.
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/tramp.texi15
2 files changed, 16 insertions, 3 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index adb5bbbd669..9c29473e99d 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12012-01-19 Eric Hanchrow <eric.hanchrow@gmail.com>
2
3 * tramp.texi (File): Tweak wording for the `scpc' option.
4
12012-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org> 52012-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 6
3 * gnus.texi (Group Parameters): Really note precedence. 7 * gnus.texi (Group Parameters): Really note precedence.
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 41ba6689f13..7fbd11decd7 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -866,13 +866,22 @@ Newer versions of @option{ssh} (for example OpenSSH 4) offer an option
866@option{ControlMaster}. This allows @option{scp} to reuse an existing 866@option{ControlMaster}. This allows @option{scp} to reuse an existing
867@option{ssh} channel, which increases performance. 867@option{ssh} channel, which increases performance.
868 868
869Before you use this method, you shall check whether your @option{ssh} 869Before you use this method, you should check whether your @option{ssh}
870implementation does support this option. Try from the command line 870implementation supports this option. Try from the command line
871 871
872@example 872@example
873ssh localhost -o ControlMaster=yes 873ssh localhost -o ControlMaster=yes /bin/true
874@end example 874@end example
875 875
876If that command succeeds silently, then you can use @option{scpc}; but
877if it fails like
878
879@example
880command-line: line 0: Bad configuration option: ControlMaster
881@end example
882
883then you cannot use it.
884
876This method supports the @samp{-p} argument. 885This method supports the @samp{-p} argument.
877 886
878 887