aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lispref/minibuf.texi5
1 files changed, 1 insertions, 4 deletions
diff --git a/lispref/minibuf.texi b/lispref/minibuf.texi
index f69cf03deac..2fca6cc04b8 100644
--- a/lispref/minibuf.texi
+++ b/lispref/minibuf.texi
@@ -110,7 +110,7 @@ middle of a Lisp function. Instead, do all minibuffer input as part of
110reading the arguments for a command, in the @code{interactive} 110reading the arguments for a command, in the @code{interactive}
111specification. @xref{Defining Commands}. 111specification. @xref{Defining Commands}.
112 112
113@defun read-from-minibuffer prompt-string &optional initial-contents keymap read hist default inherit-input-method keep-all 113@defun read-from-minibuffer prompt-string &optional initial-contents keymap read hist default inherit-input-method
114This function is the most general way to get input through the 114This function is the most general way to get input through the
115minibuffer. By default, it accepts arbitrary text and returns it as a 115minibuffer. By default, it accepts arbitrary text and returns it as a
116string; however, if @var{read} is non-@code{nil}, then it uses 116string; however, if @var{read} is non-@code{nil}, then it uses
@@ -162,9 +162,6 @@ the setting of @code{enable-multibyte-characters} (@pxref{Text
162Representations}) from whichever buffer was current before entering the 162Representations}) from whichever buffer was current before entering the
163minibuffer. 163minibuffer.
164 164
165If @var{keep-all} is non-@code{nil}, even empty and duplicate inputs
166are added to the history list.
167
168Use of @var{initial-contents} is mostly deprecated; we recommend using 165Use of @var{initial-contents} is mostly deprecated; we recommend using
169a non-@code{nil} value only in conjunction with specifying a cons cell 166a non-@code{nil} value only in conjunction with specifying a cons cell
170for @var{hist}. @xref{Initial Input}. 167for @var{hist}. @xref{Initial Input}.