aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorKenichi Handa2014-07-02 00:34:58 +0900
committerKenichi Handa2014-07-02 00:34:58 +0900
commit763a11d0d0dcf543e89a22c98f55ea07c40ceefa (patch)
tree9ecaec1b8a509a799903926ecd961ab905a1b1bd /doc
parent0782685d43f026b2366dbacbebc79021a9df50c6 (diff)
parenta519335cc3a00f3d4d8efac2c08d9b6b17c7fcf0 (diff)
downloademacs-763a11d0d0dcf543e89a22c98f55ea07c40ceefa.tar.gz
emacs-763a11d0d0dcf543e89a22c98f55ea07c40ceefa.zip
merge trunk
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/minibuf.texi7
2 files changed, 10 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 2d202715a0b..4302b53a63a 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12014-06-28 Glenn Morris <rgm@gnu.org>
2
3 * minibuf.texi (Intro to Minibuffers): Batch mode is basic.
4 (Reading a Password): Mention batch mode. (Bug#17839)
5
12014-06-23 Glenn Morris <rgm@gnu.org> 62014-06-23 Glenn Morris <rgm@gnu.org>
2 7
3 * Makefile.in (%.texi): Disable implicit rules. 8 * Makefile.in (%.texi): Disable implicit rules.
diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi
index 19f941ba68d..e76b827cd2f 100644
--- a/doc/lispref/minibuf.texi
+++ b/doc/lispref/minibuf.texi
@@ -101,7 +101,9 @@ the minibuffer is in a separate frame. @xref{Minibuffers and Frames}.
101 101
102 When Emacs is running in batch mode, any request to read from the 102 When Emacs is running in batch mode, any request to read from the
103minibuffer actually reads a line from the standard input descriptor that 103minibuffer actually reads a line from the standard input descriptor that
104was supplied when Emacs was started. 104was supplied when Emacs was started. This supports only basic input:
105none of the special minibuffer features (history, completion,
106password hiding, etc.) are available in batch mode.
105 107
106@node Text from Minibuffer 108@node Text from Minibuffer
107@section Reading Text Strings with the Minibuffer 109@section Reading Text Strings with the Minibuffer
@@ -2146,7 +2148,8 @@ function @code{read-passwd}.
2146@defun read-passwd prompt &optional confirm default 2148@defun read-passwd prompt &optional confirm default
2147This function reads a password, prompting with @var{prompt}. It does 2149This function reads a password, prompting with @var{prompt}. It does
2148not echo the password as the user types it; instead, it echoes @samp{.} 2150not echo the password as the user types it; instead, it echoes @samp{.}
2149for each character in the password. 2151for each character in the password. (Note that in batch mode, the
2152input is not hidden.)
2150 2153
2151The optional argument @var{confirm}, if non-@code{nil}, says to read the 2154The optional argument @var{confirm}, if non-@code{nil}, says to read the
2152password twice and insist it must be the same both times. If it isn't 2155password twice and insist it must be the same both times. If it isn't