1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-04 11:40:22 +00:00

* minibuf.texi (Basic Completion): Mention misc completion-table funcs.

* etc/NEWS: Related edit.
This commit is contained in:
Glenn Morris 2012-11-17 14:45:24 -08:00
parent d8715cdf90
commit a045a16773
3 changed files with 22 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2012-11-17 Glenn Morris <rgm@gnu.org>
* minibuf.texi (Basic Completion): Mention misc completion-table funcs.
2012-11-17 Leo Liu <sdl.web@gmail.com>
* minibuf.texi (Programmed Completion): Doc fix for metadata

View File

@ -886,6 +886,23 @@ Here is an example:
@end smallexample
@end defmac
@c FIXME? completion-table-with-context?
@findex completion-table-case-fold
@findex completion-table-in-turn
@findex completion-table-subvert
@findex completion-table-with-predicate
@findex completion-table-with-terminator
There are several functions that take an existing completion table and
return a modified version. @code{completion-table-case-fold} returns
a case-insensitive table. @code{completion-table-in-turn} combines
multiple input tables. @code{completion-table-subvert} alters a table
to use a different initial prefix.
@code{completion-table-with-terminator} adds a terminating string.
@code{completion-table-with-predicate} filters a table with a
predicate function.
@node Minibuffer Completion
@subsection Completion and the Minibuffer
@cindex minibuffer completion

View File

@ -812,15 +812,10 @@ More commands use `read-regexp' now to read their regexp arguments.
*** New function `completion-table-with-quoting' to handle completion
in the presence of quoting, such as file completion in shell buffers.
+++
*** New function `completion-table-subvert' to use an existing completion
table, but with a different prefix.
FIXME?
*** There are several other completion-table- functions that never got
added to NEWS or documented: completion-table-case-fold (24.1),
completion-table-with-context (23,1), completion-table-with-terminator (23.1),
completion-table-with-predicate (23.1), completion-table-in-turn (23.1)
** Debugger changes
+++