diff --git a/helpful.el b/helpful.el index 9516e46..db89abe 100644 --- a/helpful.el +++ b/helpful.el @@ -2674,7 +2674,10 @@ Returns the symbol." (rx ": " eos) (format " (default: %s): " default-val) prompt))) - (intern (completing-read prompt obarray + (intern (completing-read prompt + (if (fboundp 'help--symbol-completion-table) + 'help--symbol-completion-table + obarray) predicate t nil nil default-val)))