Mercurial > hg > xemacs-beta
comparison man/lispref/minibuf.texi @ 54:05472e90ae02 r19-16-pre2
Import from CVS: tag r19-16-pre2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:57:55 +0200 |
parents | 376386a54a3c |
children | 131b0175ea99 |
comparison
equal
deleted
inserted
replaced
53:875393c1a535 | 54:05472e90ae02 |
---|---|
1 @c -*-texinfo-*- | 1 @c -*-texinfo-*- |
2 @c This is part of the XEmacs Lisp Reference Manual. | 2 @c This is part of the XEmacs Lisp Reference Manual. |
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. | 3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1997 Free Software Foundation, Inc. |
4 @c See the file lispref.texi for copying conditions. | 4 @c See the file lispref.texi for copying conditions. |
5 @setfilename ../../info/minibuf.info | 5 @setfilename ../../info/minibuf.info |
6 @node Minibuffers, Command Loop, Read and Print, Top | 6 @node Minibuffers, Command Loop, Read and Print, Top |
7 @chapter Minibuffers | 7 @chapter Minibuffers |
8 @cindex arguments, reading | 8 @cindex arguments, reading |
317 @end smallexample | 317 @end smallexample |
318 | 318 |
319 @noindent | 319 @noindent |
320 Typing @key{RET} right away would exit the minibuffer and evaluate the | 320 Typing @key{RET} right away would exit the minibuffer and evaluate the |
321 expression, thus moving point forward one word. | 321 expression, thus moving point forward one word. |
322 @code{edit-and-eval-command} returns @code{nil} in this example. | 322 @code{edit-and-eval-command} returns @code{t} in this example. |
323 @end defun | 323 @end defun |
324 | 324 |
325 @node Minibuffer History | 325 @node Minibuffer History |
326 @section Minibuffer History | 326 @section Minibuffer History |
327 @cindex minibuffer history | 327 @cindex minibuffer history |
392 @end defvar | 392 @end defvar |
393 | 393 |
394 @defvar read-expression-history | 394 @defvar read-expression-history |
395 A history list for arguments that are Lisp expressions to evaluate. | 395 A history list for arguments that are Lisp expressions to evaluate. |
396 @end defvar | 396 @end defvar |
397 | |
398 @defvar Info-minibuffer-history | |
399 A history list for Info mode's minibuffer. | |
400 @end defvar | |
401 | |
402 @defvar Manual-page-minibuffer-history | |
403 A history list for @code{manual-entry}. | |
404 @end defvar | |
405 | |
406 There are many other minibuffer history lists, defined by various | |
407 libraries. An @kbd{M-x apropos} search for @samp{history} should prove | |
408 fruitful in discovering them. | |
397 | 409 |
398 @node Completion | 410 @node Completion |
399 @section Completion | 411 @section Completion |
400 @cindex completion | 412 @cindex completion |
401 | 413 |