summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2023-03-21 21:48:24 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2023-03-21 21:48:24 -0400
commit5904bdf581974cb8bf88534bbc58b13cca797303 (patch)
treeca2cb6e2c84df09b46d401a691baf652c4d59ed9
parent640fd9b594fa376e6493efbe0cf083e1270ddd3f (diff)
downloademacs-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.el2
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)