branch: master commit 22e3257f07191caa0b32c5cf0102a689141d2c99 Author: Artur Malabarba <bruce.connor...@gmail.com> Commit: Artur Malabarba <bruce.connor...@gmail.com>
Fix #17 - Minibuffer completion pre 25 --- packages/bug-hunter/bug-hunter.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/bug-hunter/bug-hunter.el b/packages/bug-hunter/bug-hunter.el index 9a29f2f..99f753a 100644 --- a/packages/bug-hunter/bug-hunter.el +++ b/packages/bug-hunter/bug-hunter.el @@ -4,7 +4,7 @@ ;; Author: Artur Malabarba <em...@endlessparentheses.com> ;; URL: https://github.com/Malabarba/elisp-bug-hunter -;; Version: 1.3 +;; Version: 1.3.1 ;; Keywords: lisp ;; Package-Requires: ((seq "1.3") (cl-lib "0.5")) @@ -489,7 +489,11 @@ typing `RET' at an empty prompt, in which case nil is returned." (minibuffer-with-setup-hook (lambda () (add-hook 'completion-at-point-functions - #'elisp-completion-at-point nil t) + (if (fboundp 'elisp-completion-at-point) + #'elisp-completion-at-point + (with-no-warnings + #'lisp-completion-at-point)) + nil t) (run-hooks 'eval-expression-minibuffer-setup-hook)) (insert (read-from-minibuffer