From b298893c99a0d89c89159f492063331aa0dd9990 Mon Sep 17 00:00:00 2001 From: Jimmy Yuen Ho Wong Date: Sun, 2 Nov 2025 11:29:37 +0000 Subject: [PATCH] Use help-fns internal symbol completion table --- helpful.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)))