comparison lispref/minibuf.texi @ 60042:114da1fc3775

(Text from Minibuffer): Minor clarification. Mention arrow keys.
author Richard M. Stallman <rms@gnu.org>
date Mon, 14 Feb 2005 10:17:32 +0000
parents 0e8e74522f85
children 31cb6f65b5d5 7e3f621f1dd4
comparison
equal deleted inserted replaced
60041:123a4dbb8a87 60042:114da1fc3775
109 @section Reading Text Strings with the Minibuffer 109 @section Reading Text Strings with the Minibuffer
110 110
111 Most often, the minibuffer is used to read text as a string. It can 111 Most often, the minibuffer is used to read text as a string. It can
112 also be used to read a Lisp object in textual form. The most basic 112 also be used to read a Lisp object in textual form. The most basic
113 primitive for minibuffer input is @code{read-from-minibuffer}; it can do 113 primitive for minibuffer input is @code{read-from-minibuffer}; it can do
114 either one. 114 either one. There are also specialized commands for reading
115 commands, variables, file names, etc. (@pxref{Completion}).
115 116
116 In most cases, you should not call minibuffer input functions in the 117 In most cases, you should not call minibuffer input functions in the
117 middle of a Lisp function. Instead, do all minibuffer input as part of 118 middle of a Lisp function. Instead, do all minibuffer input as part of
118 reading the arguments for a command, in the @code{interactive} 119 reading the arguments for a command, in the @code{interactive}
119 specification. @xref{Defining Commands}. 120 specification. @xref{Defining Commands}.
232 233
233 @item @kbd{C-g} 234 @item @kbd{C-g}
234 @code{abort-recursive-edit} 235 @code{abort-recursive-edit}
235 236
236 @item @kbd{M-n} 237 @item @kbd{M-n}
238 @itemx @key{DOWN}
237 @code{next-history-element} 239 @code{next-history-element}
238 240
239 @item @kbd{M-p} 241 @item @kbd{M-p}
242 @itemx @key{UP}
240 @code{previous-history-element} 243 @code{previous-history-element}
241 244
242 @item @kbd{M-s} 245 @item @kbd{M-s}
243 @code{next-matching-history-element} 246 @code{next-matching-history-element}
244 247