diff --git a/modules/lang/emacs-lisp/autoload.el b/modules/lang/emacs-lisp/autoload.el index e003de2e2..fd8e0b343 100644 --- a/modules/lang/emacs-lisp/autoload.el +++ b/modules/lang/emacs-lisp/autoload.el @@ -117,8 +117,9 @@ if it's callable, `apropos' otherwise." (org-show-hidden-entry)))) 'deferred)) (thing - (funcall (or (command-remapping #'describe-symbol) - #'describe-symbol) + (funcall (if (fboundp #'helpful-symbol) + #'helpful-symbol + #'describe-symbol) (intern thing))) ((call-interactively (if (fboundp #'helpful-at-point)