diff options
| author | Joakim Verona | 2013-01-11 00:03:43 +0100 |
|---|---|---|
| committer | Joakim Verona | 2013-01-11 00:03:43 +0100 |
| commit | 26f277ba01010776e63623d446f182f5b6f23dd3 (patch) | |
| tree | aa2a9a9f31241f687902eafafc1535ea23bd1887 /doc | |
| parent | 09708f70bd02e7a2edec79e1bcfd04fb9b7f48d3 (diff) | |
| parent | a778dd57d0da9004a72320f8082d4f6220f178e2 (diff) | |
| download | emacs-26f277ba01010776e63623d446f182f5b6f23dd3.tar.gz emacs-26f277ba01010776e63623d446f182f5b6f23dd3.zip | |
auto upstream
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/commands.texi | 8 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/tramp.texi | 16 |
4 files changed, 27 insertions, 6 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 64973ca38c5..2631bdf708a 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-01-09 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * commands.texi (Interactive Codes): | ||
| 4 | Whitespace does not terminate interactive "S". (Bug#13393) | ||
| 5 | |||
| 1 | 2013-01-06 Chong Yidong <cyd@gnu.org> | 6 | 2013-01-06 Chong Yidong <cyd@gnu.org> |
| 2 | 7 | ||
| 3 | * windows.texi (Vertical Scrolling): Fix typos (Bug#13267). | 8 | * windows.texi (Vertical Scrolling): Fix typos (Bug#13267). |
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi index f3589fc2edd..846d6f3a4a9 100644 --- a/doc/lispref/commands.texi +++ b/doc/lispref/commands.texi | |||
| @@ -471,10 +471,10 @@ Arbitrary text, read in the minibuffer and returned as a string | |||
| 471 | these characters in the input.) Prompt. | 471 | these characters in the input.) Prompt. |
| 472 | 472 | ||
| 473 | @item S | 473 | @item S |
| 474 | An interned symbol whose name is read in the minibuffer. Any whitespace | 474 | An interned symbol whose name is read in the minibuffer. Terminate |
| 475 | character terminates the input. (Use @kbd{C-q} to include whitespace in | 475 | the input with either @kbd{C-j} or @key{RET}. Other characters that |
| 476 | the string.) Other characters that normally terminate a symbol (e.g., | 476 | normally terminate a symbol (e.g., whitespace, parentheses and |
| 477 | parentheses and brackets) do not do so here. Prompt. | 477 | brackets) do not do so here. Prompt. |
| 478 | 478 | ||
| 479 | @item U | 479 | @item U |
| 480 | A key sequence or @code{nil}. Can be used after a @samp{k} or | 480 | A key sequence or @code{nil}. Can be used after a @samp{k} or |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index fba163a84ac..4412b1c3c2c 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-01-10 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * tramp.texi (Default Host): Introduce `tramp-default-host-alist'. | ||
| 4 | |||
| 1 | 2013-01-09 Bastien Guerry <bzg@gnu.org> | 5 | 2013-01-09 Bastien Guerry <bzg@gnu.org> |
| 2 | 6 | ||
| 3 | * org.texi (Pushing to MobileOrg): Add footnote about using | 7 | * org.texi (Pushing to MobileOrg): Add footnote about using |
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi index a683425868a..3a859c62728 100644 --- a/doc/misc/tramp.texi +++ b/doc/misc/tramp.texi | |||
| @@ -1279,8 +1279,8 @@ example, if you always have to use the user @samp{john} in the domain | |||
| 1279 | @end lisp | 1279 | @end lisp |
| 1280 | 1280 | ||
| 1281 | @noindent | 1281 | @noindent |
| 1282 | See the documentation for the variable | 1282 | See the documentation for the variable @code{tramp-default-user-alist} |
| 1283 | @code{tramp-default-user-alist} for more details. | 1283 | for more details. |
| 1284 | 1284 | ||
| 1285 | One trap to fall in must be known. If @value{tramp} finds a default | 1285 | One trap to fall in must be known. If @value{tramp} finds a default |
| 1286 | user, this user will be passed always to the connection command as | 1286 | user, this user will be passed always to the connection command as |
| @@ -1338,6 +1338,18 @@ Note, however, that the most simplification @samp{/::} won't work, | |||
| 1338 | because @samp{/:} is the prefix for quoted file names. | 1338 | because @samp{/:} is the prefix for quoted file names. |
| 1339 | @end ifset | 1339 | @end ifset |
| 1340 | 1340 | ||
| 1341 | @vindex tramp-default-host-alist | ||
| 1342 | Like with methods and users, you can also specify different default | ||
| 1343 | hosts for certain method/user combinations via the variable | ||
| 1344 | @code{tramp-default-host-alist}. Usually, this isn't necessary, | ||
| 1345 | because @code{tramp-default-host} should be sufficient. For some | ||
| 1346 | methods, like @code{adb}, that default value must be overwritten, | ||
| 1347 | which is already the initial value of @code{tramp-default-host-alist}. | ||
| 1348 | |||
| 1349 | @noindent | ||
| 1350 | See the documentation for the variable @code{tramp-default-host-alist} | ||
| 1351 | for more details. | ||
| 1352 | |||
| 1341 | 1353 | ||
| 1342 | @node Multi-hops | 1354 | @node Multi-hops |
| 1343 | @section Connecting to a remote host using multiple hops | 1355 | @section Connecting to a remote host using multiple hops |