branch: elpa/flx commit 6800cc34a90dd94a0c4b9344e9ea5f828b983221 Author: Ramkumar Ramachandra <artag...@gmail.com> Commit: Ramkumar Ramachandra <artag...@gmail.com>
flx-ido: fix comment in advice for ido-set-matches-1 Signed-off-by: Ramkumar Ramachandra <artag...@gmail.com> --- flx-ido.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flx-ido.el b/flx-ido.el index b4bb146983..1d3de6a34f 100644 --- a/flx-ido.el +++ b/flx-ido.el @@ -197,7 +197,7 @@ item, in which case, the ending items are deleted." (clrhash flx-ido-narrowed-matches-hash))) (defadvice ido-set-matches-1 (around flx-ido-set-matches-1 activate) - "Choose between the regular ido-set-matches-1 and my-ido-fuzzy-match" + "Choose between the regular ido-set-matches-1 and flx-ido-match" (if flx-ido-mode (setq ad-return-value (flx-ido-match ido-text (ad-get-arg 0))) ad-do-it))