diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/net/tramp.el | 2 | ||||
| -rw-r--r-- | man/ChangeLog | 5 | ||||
| -rw-r--r-- | man/tramp.texi | 11 |
4 files changed, 15 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c0eac60c44f..981ed383dd4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-11-07 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp.el (tramp-default-method): scp is the default method. | ||
| 4 | |||
| 1 | 2006-11-07 Juanma Barranquero <lekktu@gmail.com> | 5 | 2006-11-07 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * server.el (server-start): Save also the Emacs pid in the server file. | 7 | * server.el (server-start): Save also the Emacs pid in the server file. |
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 0b914a811d1..ae815b7d434 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -676,7 +676,7 @@ various functions for details." | |||
| 676 | (if (and (fboundp 'executable-find) | 676 | (if (and (fboundp 'executable-find) |
| 677 | (executable-find "plink")) | 677 | (executable-find "plink")) |
| 678 | "plink" | 678 | "plink" |
| 679 | "ssh") | 679 | "scp") |
| 680 | "*Default method to use for transferring files. | 680 | "*Default method to use for transferring files. |
| 681 | See `tramp-methods' for possibilities. | 681 | See `tramp-methods' for possibilities. |
| 682 | Also see `tramp-default-method-alist'." | 682 | Also see `tramp-default-method-alist'." |
diff --git a/man/ChangeLog b/man/ChangeLog index e2388af77de..aba169c6a49 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-11-07 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * tramp.texi (Configuration): scp is the default method. | ||
| 4 | (Default Method): Use ssh as example for another method. | ||
| 5 | |||
| 1 | 2006-11-06 Richard Stallman <rms@gnu.org> | 6 | 2006-11-06 Richard Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * emacs.texi (Acknowledgments): Fix name spelling, add Anna Bigatti. | 8 | * emacs.texi (Acknowledgments): Fix name spelling, add Anna Bigatti. |
diff --git a/man/tramp.texi b/man/tramp.texi index baea8d6652e..48d13b67ee3 100644 --- a/man/tramp.texi +++ b/man/tramp.texi | |||
| @@ -456,11 +456,10 @@ filenames in July 2002. | |||
| 456 | @cindex configuration | 456 | @cindex configuration |
| 457 | 457 | ||
| 458 | @cindex default configuration | 458 | @cindex default configuration |
| 459 | @value{tramp} is (normally) fully functional when it is initially installed. | 459 | @value{tramp} is (normally) fully functional when it is initially |
| 460 | It is initially configured to use the @command{ssh} program to connect | 460 | installed. It is initially configured to use the @command{scp} |
| 461 | to the remote host and to use base64 or uu encoding to transfer the | 461 | program to connect to the remote host. So in the easiest case, you |
| 462 | files through that shell connection. So in the easiest case, you just | 462 | just type @kbd{C-x C-f} and then enter the filename |
| 463 | type @kbd{C-x C-f} and then enter the filename | ||
| 464 | @file{@value{prefix}@var{user}@@@var{machine}@value{postfix}@var{/path/to.file}}. | 463 | @file{@value{prefix}@var{user}@@@var{machine}@value{postfix}@var{/path/to.file}}. |
| 465 | 464 | ||
| 466 | On some hosts, there are problems with opening a connection. These are | 465 | On some hosts, there are problems with opening a connection. These are |
| @@ -1036,7 +1035,7 @@ choice. This variable controls which method will be used when a method | |||
| 1036 | is not specified in the @value{tramp} file name. For example: | 1035 | is not specified in the @value{tramp} file name. For example: |
| 1037 | 1036 | ||
| 1038 | @lisp | 1037 | @lisp |
| 1039 | (setq tramp-default-method "scp") | 1038 | (setq tramp-default-method "ssh") |
| 1040 | @end lisp | 1039 | @end lisp |
| 1041 | 1040 | ||
| 1042 | @vindex tramp-default-method-alist | 1041 | @vindex tramp-default-method-alist |