diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-03-21 21:48:24 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-03-21 21:48:24 -0400 |
commit | 5904bdf581974cb8bf88534bbc58b13cca797303 (patch) | |
tree | ca2cb6e2c84df09b46d401a691baf652c4d59ed9 | |
parent | 640fd9b594fa376e6493efbe0cf083e1270ddd3f (diff) | |
download | emacs-5904bdf581974cb8bf88534bbc58b13cca797303.tar.gz |
(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.
-rw-r--r-- | lisp/help-fns.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |