diff options
| author | Chong Yidong | 2009-12-29 13:06:16 -0500 |
|---|---|---|
| committer | Chong Yidong | 2009-12-29 13:06:16 -0500 |
| commit | 26e533e2d9e4c6bdf010d34e9686ee2e6c84a84a (patch) | |
| tree | ef7f01c7c9cf6c5220e617c1ab3cc490be29aac1 /doc/lispref | |
| parent | 659e4408a49d7ced1cbdfff3ca89a10413d642ac (diff) | |
| download | emacs-26e533e2d9e4c6bdf010d34e9686ee2e6c84a84a.tar.gz emacs-26e533e2d9e4c6bdf010d34e9686ee2e6c84a84a.zip | |
* doc/emacs/misc.texi (Shell): Document async-shell-command.
* doc/emacs/building.texi (Grep Searching): Document zrgrep.
* doc/emacs/mini.texi (Completion Options):
* doc/lispref/minibuf.texi (Completion Styles): Document `initials' style.
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/minibuf.texi | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 36848e395d2..8e88e5026e8 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-12-29 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * minibuf.texi (Completion Styles): Document `initials' style. | ||
| 4 | |||
| 1 | 2009-12-25 Chong Yidong <cyd@stupidchicken.com> | 5 | 2009-12-25 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * frames.texi (Resources): Describe inhibit-x-resources. | 7 | * frames.texi (Resources): Describe inhibit-x-resources. |
diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi index 28dc9e8ba3d..4ded2749986 100644 --- a/doc/lispref/minibuf.texi +++ b/doc/lispref/minibuf.texi | |||
| @@ -1589,13 +1589,13 @@ procedure is used for listing completions, via the | |||
| 1589 | @var{all-completions} functions. | 1589 | @var{all-completions} functions. |
| 1590 | @end defvar | 1590 | @end defvar |
| 1591 | 1591 | ||
| 1592 | By default, @code{completion-styles-alist} contains four pre-defined | 1592 | By default, @code{completion-styles-alist} contains five pre-defined |
| 1593 | completion styles: @code{basic}, a basic completion style; | 1593 | completion styles: @code{basic}, a basic completion style; |
| 1594 | @code{partial-completion}, which does partial completion (completing | 1594 | @code{partial-completion}, which does partial completion (completing |
| 1595 | each word in the input separately); @code{emacs22}, which performs | 1595 | each word in the input separately); @code{emacs22}, which performs |
| 1596 | completion according to the rules used in Emacs 22; and | 1596 | completion according to the rules used in Emacs 22; @code{emacs21}, |
| 1597 | @code{emacs21}, which performs completion according to the rules used | 1597 | which performs completion according to the rules used in Emacs 21; and |
| 1598 | in Emacs 21. | 1598 | @code{initials}, which completes acronyms and initialisms. |
| 1599 | 1599 | ||
| 1600 | @node Programmed Completion | 1600 | @node Programmed Completion |
| 1601 | @subsection Programmed Completion | 1601 | @subsection Programmed Completion |