diff options
| author | Kenichi Handa | 2014-07-02 00:34:58 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2014-07-02 00:34:58 +0900 |
| commit | 763a11d0d0dcf543e89a22c98f55ea07c40ceefa (patch) | |
| tree | 9ecaec1b8a509a799903926ecd961ab905a1b1bd /doc | |
| parent | 0782685d43f026b2366dbacbebc79021a9df50c6 (diff) | |
| parent | a519335cc3a00f3d4d8efac2c08d9b6b17c7fcf0 (diff) | |
| download | emacs-763a11d0d0dcf543e89a22c98f55ea07c40ceefa.tar.gz emacs-763a11d0d0dcf543e89a22c98f55ea07c40ceefa.zip | |
merge trunk
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/minibuf.texi | 7 |
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 @@ | |||
| 1 | 2014-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 | |||
| 1 | 2014-06-23 Glenn Morris <rgm@gnu.org> | 6 | 2014-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 |
| 103 | minibuffer actually reads a line from the standard input descriptor that | 103 | minibuffer actually reads a line from the standard input descriptor that |
| 104 | was supplied when Emacs was started. | 104 | was supplied when Emacs was started. This supports only basic input: |
| 105 | none of the special minibuffer features (history, completion, | ||
| 106 | password 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 |
| 2147 | This function reads a password, prompting with @var{prompt}. It does | 2149 | This function reads a password, prompting with @var{prompt}. It does |
| 2148 | not echo the password as the user types it; instead, it echoes @samp{.} | 2150 | not echo the password as the user types it; instead, it echoes @samp{.} |
| 2149 | for each character in the password. | 2151 | for each character in the password. (Note that in batch mode, the |
| 2152 | input is not hidden.) | ||
| 2150 | 2153 | ||
| 2151 | The optional argument @var{confirm}, if non-@code{nil}, says to read the | 2154 | The optional argument @var{confirm}, if non-@code{nil}, says to read the |
| 2152 | password twice and insist it must be the same both times. If it isn't | 2155 | password twice and insist it must be the same both times. If it isn't |