diff options
| author | Jambunathan K | 2012-10-26 16:44:38 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-10-26 16:44:38 -0400 |
| commit | 55f197b2192f30e1207fe67aef9ddbb02e2712e5 (patch) | |
| tree | e35cd50f91beeba308fb520c7812f4779d3d960f /lisp | |
| parent | 59696ae01cb838bb5d6128cda29e4c825cdb1f7e (diff) | |
| download | emacs-55f197b2192f30e1207fe67aef9ddbb02e2712e5.tar.gz emacs-55f197b2192f30e1207fe67aef9ddbb02e2712e5.zip | |
* lisp/minibuffer.el (completion-category-overrides): New completion
category `bookmark'.
Fixes: debbugs:11131
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/minibuffer.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7cb9fb0793c..4f6e37af6ee 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-10-26 Jambunathan K <kjambunathan@gmail.com> | ||
| 2 | |||
| 3 | * minibuffer.el (completion-category-overrides): New completion | ||
| 4 | category `bookmark' (bug#11131). | ||
| 5 | |||
| 1 | 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * emacs-lisp/advice.el (ad-assemble-advised-definition): | 8 | * emacs-lisp/advice.el (ad-assemble-advised-definition): |
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 4421e325b91..52c3a0ba659 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -743,6 +743,7 @@ completing buffer and file names, respectively." | |||
| 743 | (const buffer) | 743 | (const buffer) |
| 744 | (const file) | 744 | (const file) |
| 745 | (const unicode-name) | 745 | (const unicode-name) |
| 746 | (const bookmark) | ||
| 746 | symbol) | 747 | symbol) |
| 747 | :value-type | 748 | :value-type |
| 748 | (set :tag "Properties to override" | 749 | (set :tag "Properties to override" |