aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii2018-04-01 12:19:49 +0300
committerEli Zaretskii2018-04-01 12:19:49 +0300
commita8ddd05d7d32946b892b9faaba6c9736ed2ad847 (patch)
tree40a182e08bae811ba6180f50e193bfb0d44c0d9d /lisp
parent320ecd3e564facaabdb6324f94c07c447f3175b9 (diff)
downloademacs-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.el9
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
2074As is the case with most hooks, the functions are responsible for 2074As is the case with most hooks, the functions are responsible for
2075preserving things like point and current buffer. 2075preserving things like point and current buffer.
2076 2076
2077NOTE: These functions should be cheap to run since they're sometimes run from 2077NOTE: These functions should be cheap to run since they're sometimes
2078`post-command-hook' and they should ideally only choose which kind of 2078run from `post-command-hook'; and they should ideally only choose
2079completion table to use and not pre-filter it based on the current text between 2079which kind of completion table to use, and not pre-filter it based
2080START and END (e.g. that would not obey `completion-styles').") 2080on the current text between START and END (e.g., they should not
2081obey `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.