aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
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.