]> git.eshelyaron.com Git - emacs.git/commitdiff
(describe-function): Load file for `...' references
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 22 Mar 2023 01:48:24 +0000 (21:48 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 22 Mar 2023 01:48:24 +0000 (21:48 -0400)
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.

lisp/help-fns.el

index 50e60b68e17c3aa1a005d7cb237eff8688beb7aa..6dbdb565b1b22e884ecf8147ede2ae53704b0a72 100644 (file)
@@ -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)