]> git.eshelyaron.com Git - emacs.git/commitdiff
* minibuf.texi (Minibuffer History, Basic Completion): Tweak page breaks.
authorGlenn Morris <rgm@gnu.org>
Sat, 5 May 2012 02:49:19 +0000 (19:49 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 5 May 2012 02:49:19 +0000 (19:49 -0700)
doc/lispref/ChangeLog
doc/lispref/minibuf.texi

index 5bb5d6101e44763e4c647e85e0e2e2f21a0fc4c9..186558be2548aa66af2529a6805f8cc0f4dd8f2e 100644 (file)
@@ -1,5 +1,8 @@
 2012-05-05  Glenn Morris  <rgm@gnu.org>
 
+       * minibuf.texi (Minibuffer History, Basic Completion):
+       Tweak page breaks.
+
        * internals.texi (Garbage Collection, Memory Usage)
        (Writing Emacs Primitives): Tweak page breaks.
 
index 47ecc9e5893d08689fc39174f6513e030e4db07b..e40cbd14687cd77852ee2e995aa80a971adf3ea2 100644 (file)
@@ -513,8 +513,7 @@ duplicates, and to add @var{newelt} to the list even if it is empty.
 If the value of this variable is @code{nil}, standard functions that
 read from the minibuffer don't add new elements to the history list.
 This lets Lisp programs explicitly manage input history by using
-@code{add-to-history}.  By default, @code{history-add-new-input} is
-non-@code{nil}.
+@code{add-to-history}.  The default value is @code{t}.
 @end defvar
 
 @defopt history-length
@@ -697,7 +696,7 @@ You can also use a function as @var{collection}.  Then the function is
 solely responsible for performing completion; @code{try-completion}
 returns whatever this function returns.  The function is called with
 three arguments: @var{string}, @var{predicate} and @code{nil} (the
-reason for the third argument is so that the same function can be used
+third argument is so that the same function can be used
 in @code{all-completions} and do the appropriate thing in either
 case).  @xref{Programmed Completion}.
 
@@ -720,8 +719,8 @@ handle @code{completion-regexp-list} itself.)
 In the first of the following examples, the string @samp{foo} is
 matched by three of the alist @sc{car}s.  All of the matches begin with
 the characters @samp{fooba}, so that is the result.  In the second
-example, there is only one possible match, and it is exact, so the value
-is @code{t}.
+example, there is only one possible match, and it is exact, so the
+return value is @code{t}.
 
 @smallexample
 @group