aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2011-02-27 17:10:48 -0500
committerChong Yidong2011-02-27 17:10:48 -0500
commitb923f7a98fed9177f6f61a3aafb0ddbeb60abdad (patch)
tree6d3fb3ac1ef13c562211515a4d88734b0da56651
parent6c89f663ba51640d75837060be32befdce7d7e6d (diff)
downloademacs-b923f7a98fed9177f6f61a3aafb0ddbeb60abdad.tar.gz
emacs-b923f7a98fed9177f6f61a3aafb0ddbeb60abdad.zip
* minibuf.texi: Clarify history list discussion (Bug#8085).
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/minibuf.texi23
2 files changed, 16 insertions, 12 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 90eed004d39..e0df108f8b6 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12011-02-27 Chong Yidong <cyd@stupidchicken.com>
2
3 * minibuf.texi (Minibuffer History): Clarify discussion of
4 minibuffer history lists (Bug#8085).
5
12011-02-19 Eli Zaretskii <eliz@gnu.org> 62011-02-19 Eli Zaretskii <eliz@gnu.org>
2 7
3 * elisp.texi: Sync @dircategory with ../../info/dir. 8 * elisp.texi: Sync @dircategory with ../../info/dir.
diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi
index 50324a91f5f..07975e64b35 100644
--- a/doc/lispref/minibuf.texi
+++ b/doc/lispref/minibuf.texi
@@ -433,18 +433,17 @@ expression, thus moving point forward one word.
433@cindex minibuffer history 433@cindex minibuffer history
434@cindex history list 434@cindex history list
435 435
436 A @dfn{minibuffer history list} records previous minibuffer inputs so 436 A @dfn{minibuffer history list} records previous minibuffer inputs
437the user can reuse them conveniently. A history list is actually a 437so the user can reuse them conveniently. It is a variable whose value
438symbol, not a list; it is a variable whose value is a list of strings 438is a list of strings (previous inputs), most recent first.
439(previous inputs), most recent first. 439
440 440 There are many separate minibuffer history lists, used for different
441 There are many separate history lists, used for different kinds of 441kinds of inputs. It's the Lisp programmer's job to specify the right
442inputs. It's the Lisp programmer's job to specify the right history 442history list for each use of the minibuffer.
443list for each use of the minibuffer. 443
444 444 You specify a minibuffer history list with the optional @var{hist}
445 You specify the history list with the optional @var{hist} argument 445argument to @code{read-from-minibuffer} or @code{completing-read}.
446to either @code{read-from-minibuffer} or @code{completing-read}. Here 446Here are the possible values for it:
447are the possible values for it:
448 447
449@table @asis 448@table @asis
450@item @var{variable} 449@item @var{variable}