emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 5904bdf5819: (describe-function): Load file for `...' references


From: Stefan Monnier
Subject: master 5904bdf5819: (describe-function): Load file for `...' references
Date: Tue, 21 Mar 2023 21:48:32 -0400 (EDT)

branch: master
commit 5904bdf581974cb8bf88534bbc58b13cca797303
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    (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.
---
 lisp/help-fns.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]