diff options
| author | Glenn Morris | 2012-11-17 15:29:29 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-11-17 15:29:29 -0800 |
| commit | 7f6705c313ce5054fdcbc457fa32b9680bcb11a7 (patch) | |
| tree | baae1b0a6a58eafd93a89950d9890793890e1438 | |
| parent | e3369c41e6b2af7c2d77e67974e210c27c635c54 (diff) | |
| download | emacs-7f6705c313ce5054fdcbc457fa32b9680bcb11a7.tar.gz emacs-7f6705c313ce5054fdcbc457fa32b9680bcb11a7.zip | |
* minibuf.texi (Basic Completion): Mention completion-table-with-quoting
| -rw-r--r-- | doc/lispref/minibuf.texi | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi index 120d84531f6..033c10fbf7d 100644 --- a/doc/lispref/minibuf.texi +++ b/doc/lispref/minibuf.texi | |||
| @@ -887,10 +887,10 @@ Here is an example: | |||
| 887 | @end defmac | 887 | @end defmac |
| 888 | 888 | ||
| 889 | @c FIXME? completion-table-with-context? | 889 | @c FIXME? completion-table-with-context? |
| 890 | |||
| 891 | @findex completion-table-case-fold | 890 | @findex completion-table-case-fold |
| 892 | @findex completion-table-in-turn | 891 | @findex completion-table-in-turn |
| 893 | @findex completion-table-subvert | 892 | @findex completion-table-subvert |
| 893 | @findex completion-table-with-quoting | ||
| 894 | @findex completion-table-with-predicate | 894 | @findex completion-table-with-predicate |
| 895 | @findex completion-table-with-terminator | 895 | @findex completion-table-with-terminator |
| 896 | @cindex completion table, modifying | 896 | @cindex completion table, modifying |
| @@ -899,10 +899,11 @@ There are several functions that take an existing completion table and | |||
| 899 | return a modified version. @code{completion-table-case-fold} returns | 899 | return a modified version. @code{completion-table-case-fold} returns |
| 900 | a case-insensitive table. @code{completion-table-in-turn} combines | 900 | a case-insensitive table. @code{completion-table-in-turn} combines |
| 901 | multiple input tables. @code{completion-table-subvert} alters a table | 901 | multiple input tables. @code{completion-table-subvert} alters a table |
| 902 | to use a different initial prefix. | 902 | to use a different initial prefix. @code{completion-table-with-quoting} |
| 903 | @code{completion-table-with-terminator} adds a terminating string. | 903 | returns a table suitable for operating on quoted text. |
| 904 | @code{completion-table-with-predicate} filters a table with a | 904 | @code{completion-table-with-predicate} filters a table with a |
| 905 | predicate function. | 905 | predicate function. @code{completion-table-with-terminator} adds a |
| 906 | terminating string. | ||
| 906 | 907 | ||
| 907 | 908 | ||
| 908 | @node Minibuffer Completion | 909 | @node Minibuffer Completion |