diff options
| author | Eli Zaretskii | 2018-04-01 12:19:49 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2018-04-01 12:19:49 +0300 |
| commit | a8ddd05d7d32946b892b9faaba6c9736ed2ad847 (patch) | |
| tree | 40a182e08bae811ba6180f50e193bfb0d44c0d9d /lisp | |
| parent | 320ecd3e564facaabdb6324f94c07c447f3175b9 (diff) | |
| download | emacs-a8ddd05d7d32946b892b9faaba6c9736ed2ad847.tar.gz emacs-a8ddd05d7d32946b892b9faaba6c9736ed2ad847.zip | |
Minor copyedits of completion-at-point-functions documentation
* lisp/minibuffer.el (completion-at-point-functions):
* doc/lispref/minibuf.texi (Completion in Buffers): Fix wording
and filling.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/minibuffer.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 6eded9c58fe..f1cbdc0cc36 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -2074,10 +2074,11 @@ Currently supported properties are all the properties that can appear in | |||
| 2074 | As is the case with most hooks, the functions are responsible for | 2074 | As is the case with most hooks, the functions are responsible for |
| 2075 | preserving things like point and current buffer. | 2075 | preserving things like point and current buffer. |
| 2076 | 2076 | ||
| 2077 | NOTE: These functions should be cheap to run since they're sometimes run from | 2077 | NOTE: These functions should be cheap to run since they're sometimes |
| 2078 | `post-command-hook' and they should ideally only choose which kind of | 2078 | run from `post-command-hook'; and they should ideally only choose |
| 2079 | completion table to use and not pre-filter it based on the current text between | 2079 | which kind of completion table to use, and not pre-filter it based |
| 2080 | START and END (e.g. that would not obey `completion-styles').") | 2080 | on the current text between START and END (e.g., they should not |
| 2081 | obey `completion-styles').") | ||
| 2081 | 2082 | ||
| 2082 | (defvar completion--capf-misbehave-funs nil | 2083 | (defvar completion--capf-misbehave-funs nil |
| 2083 | "List of functions found on `completion-at-point-functions' that misbehave. | 2084 | "List of functions found on `completion-at-point-functions' that misbehave. |