We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03756fa commit 8032636Copy full SHA for 8032636
1 file changed
helpful.el
@@ -2674,7 +2674,10 @@ Returns the symbol."
2674
(rx ": " eos)
2675
(format " (default: %s): " default-val)
2676
prompt)))
2677
- (intern (completing-read prompt obarray
+ (intern (completing-read prompt
2678
+ (if (fboundp 'help--symbol-completion-table)
2679
+ help--symbol-completion-table
2680
+ obarray)
2681
predicate t nil nil
2682
default-val)))
2683
0 commit comments