diff options
| -rw-r--r-- | lispref/minibuf.texi | 5 |
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 | |||
| 110 | reading the arguments for a command, in the @code{interactive} | 110 | reading the arguments for a command, in the @code{interactive} |
| 111 | specification. @xref{Defining Commands}. | 111 | specification. @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 |
| 114 | This function is the most general way to get input through the | 114 | This function is the most general way to get input through the |
| 115 | minibuffer. By default, it accepts arbitrary text and returns it as a | 115 | minibuffer. By default, it accepts arbitrary text and returns it as a |
| 116 | string; however, if @var{read} is non-@code{nil}, then it uses | 116 | string; however, if @var{read} is non-@code{nil}, then it uses |
| @@ -162,9 +162,6 @@ the setting of @code{enable-multibyte-characters} (@pxref{Text | |||
| 162 | Representations}) from whichever buffer was current before entering the | 162 | Representations}) from whichever buffer was current before entering the |
| 163 | minibuffer. | 163 | minibuffer. |
| 164 | 164 | ||
| 165 | If @var{keep-all} is non-@code{nil}, even empty and duplicate inputs | ||
| 166 | are added to the history list. | ||
| 167 | |||
| 168 | Use of @var{initial-contents} is mostly deprecated; we recommend using | 165 | Use of @var{initial-contents} is mostly deprecated; we recommend using |
| 169 | a non-@code{nil} value only in conjunction with specifying a cons cell | 166 | a non-@code{nil} value only in conjunction with specifying a cons cell |
| 170 | for @var{hist}. @xref{Initial Input}. | 167 | for @var{hist}. @xref{Initial Input}. |