branch: elpa/flx commit 569beec178ad96c006aae62d8f1f0f8c61523893 Merge: 27bc47899a 638313b829 Author: Le Wang <l26w...@gmail.com> Commit: Le Wang <l26w...@gmail.com>
Merge pull request #39 from artagnon/minor-cleanups Minor cleanups --- .gitignore | 2 ++ flx-ido.el | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c531d9867f..9a26b07176 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ *.elc +*~ +\#*# 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))