diff options
| author | Stefan Monnier | 2012-09-01 00:28:24 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-09-01 00:28:24 -0400 |
| commit | 3d10e1343d65341d4d48633e0b561df86787c438 (patch) | |
| tree | 7a13f6392d89b47e91f060b41fdf10f98e053602 /lisp | |
| parent | 3363421789fd8fdbe88ad48872e01bae957d9d4f (diff) | |
| download | emacs-3d10e1343d65341d4d48633e0b561df86787c438.tar.gz emacs-3d10e1343d65341d4d48633e0b561df86787c438.zip | |
* lisp/minibuffer.el (completion-at-point-functions): Complete docstring.
Fixes: debbugs:12254
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/minibuffer.el | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 68bb8e06e87..c5b866e9d54 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * minibuffer.el (completion-at-point-functions): Complete docstring | ||
| 4 | (bug#12254). | ||
| 5 | |||
| 1 | 2012-09-01 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2012-09-01 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Better seed support for (random). | 8 | Better seed support for (random). |
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index cc2638d58de..a696fff7dc7 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -1821,7 +1821,9 @@ Currently supported properties are all the properties that can appear in | |||
| 1821 | `:predicate' a predicate that completion candidates need to satisfy. | 1821 | `:predicate' a predicate that completion candidates need to satisfy. |
| 1822 | `:exclusive' If `no', means that if the completion table fails to | 1822 | `:exclusive' If `no', means that if the completion table fails to |
| 1823 | match the text at point, then instead of reporting a completion | 1823 | match the text at point, then instead of reporting a completion |
| 1824 | failure, the completion should try the next completion function.") | 1824 | failure, the completion should try the next completion function. |
| 1825 | As is the case with most hooks, the functions are responsible to preserve | ||
| 1826 | things like point and current buffer.") | ||
| 1825 | 1827 | ||
| 1826 | (defvar completion--capf-misbehave-funs nil | 1828 | (defvar completion--capf-misbehave-funs nil |
| 1827 | "List of functions found on `completion-at-point-functions' that misbehave. | 1829 | "List of functions found on `completion-at-point-functions' that misbehave. |