From: Stefan Monnier Date: Wed, 22 Mar 2023 01:48:24 +0000 (-0400) Subject: (describe-function): Load file for `...' references X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5904bdf581974cb8bf88534bbc58b13cca797303;p=emacs.git (describe-function): Load file for `...' references To fix bug#62300, we do the same for `...' as we already did for \[...] * help-fns.el (describe-function-1): Look for `...' references in addition to key substitution markup. --- diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 50e60b68e17..6dbdb565b1b 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -1138,7 +1138,7 @@ Returns a list of the form (REAL-FUNCTION DEF ALIASED REAL-DEF)." ;; key substitution constructs, load the library. (and (autoloadp real-def) doc-raw help-enable-autoload - (string-match "\\([^\\]=\\|[^=]\\|\\`\\)\\\\[[{<]" doc-raw) + (string-match "\\([^\\]=\\|[^=]\\|\\`\\)\\\\[[{<]\\|`.*'" doc-raw) (autoload-do-load real-def)) (help-fns--key-bindings function)