aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoakim Verona2013-01-11 00:03:43 +0100
committerJoakim Verona2013-01-11 00:03:43 +0100
commit26f277ba01010776e63623d446f182f5b6f23dd3 (patch)
treeaa2a9a9f31241f687902eafafc1535ea23bd1887 /doc
parent09708f70bd02e7a2edec79e1bcfd04fb9b7f48d3 (diff)
parenta778dd57d0da9004a72320f8082d4f6220f178e2 (diff)
downloademacs-26f277ba01010776e63623d446f182f5b6f23dd3.tar.gz
emacs-26f277ba01010776e63623d446f182f5b6f23dd3.zip
auto upstream
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/commands.texi8
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/tramp.texi16
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 @@
12013-01-09 Glenn Morris <rgm@gnu.org>
2
3 * commands.texi (Interactive Codes):
4 Whitespace does not terminate interactive "S". (Bug#13393)
5
12013-01-06 Chong Yidong <cyd@gnu.org> 62013-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
471these characters in the input.) Prompt. 471these characters in the input.) Prompt.
472 472
473@item S 473@item S
474An interned symbol whose name is read in the minibuffer. Any whitespace 474An interned symbol whose name is read in the minibuffer. Terminate
475character terminates the input. (Use @kbd{C-q} to include whitespace in 475the input with either @kbd{C-j} or @key{RET}. Other characters that
476the string.) Other characters that normally terminate a symbol (e.g., 476normally terminate a symbol (e.g., whitespace, parentheses and
477parentheses and brackets) do not do so here. Prompt. 477brackets) do not do so here. Prompt.
478 478
479@item U 479@item U
480A key sequence or @code{nil}. Can be used after a @samp{k} or 480A 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 @@
12013-01-10 Michael Albinus <michael.albinus@gmx.de>
2
3 * tramp.texi (Default Host): Introduce `tramp-default-host-alist'.
4
12013-01-09 Bastien Guerry <bzg@gnu.org> 52013-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
1282See the documentation for the variable 1282See the documentation for the variable @code{tramp-default-user-alist}
1283@code{tramp-default-user-alist} for more details. 1283for more details.
1284 1284
1285One trap to fall in must be known. If @value{tramp} finds a default 1285One trap to fall in must be known. If @value{tramp} finds a default
1286user, this user will be passed always to the connection command as 1286user, 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,
1338because @samp{/:} is the prefix for quoted file names. 1338because @samp{/:} is the prefix for quoted file names.
1339@end ifset 1339@end ifset
1340 1340
1341@vindex tramp-default-host-alist
1342Like with methods and users, you can also specify different default
1343hosts for certain method/user combinations via the variable
1344@code{tramp-default-host-alist}. Usually, this isn't necessary,
1345because @code{tramp-default-host} should be sufficient. For some
1346methods, like @code{adb}, that default value must be overwritten,
1347which is already the initial value of @code{tramp-default-host-alist}.
1348
1349@noindent
1350See the documentation for the variable @code{tramp-default-host-alist}
1351for 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