emacs-diffs
[Top][All Lists]
Advanced

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

emacs-29 7637e361d3b: Don't truncate filenames with "emacs.el" in them


From: Eli Zaretskii
Subject: emacs-29 7637e361d3b: Don't truncate filenames with "emacs.el" in them
Date: Tue, 20 Jun 2023 09:36:20 -0400 (EDT)

branch: emacs-29
commit 7637e361d3baeefc7e6ab147ccfccfcc774dcd01
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Don't truncate filenames with "emacs.el" in them
    
    * lisp/emacs-lisp/find-func.el (find-function-search-for-symbol):
    Avoid false positives when looking for "emacs.el" matches the
    likes of "emacs.elpa".  (Bug#64143)
---
 lisp/emacs-lisp/find-func.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index f9f919afb1b..bf890fc35a9 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -407,7 +407,7 @@ The search is done in the source for library LIBRARY."
       (setq library (substring library 0 (match-beginning 1))))
     ;; Strip extension from .emacs.el to make sure symbol is searched in
     ;; .emacs too.
-    (when (string-match "\\.emacs\\(.el\\)" library)
+    (when (string-match "\\.emacs\\(.el\\)\\'" library)
       (setq library (substring library 0 (match-beginning 1))))
     (let* ((filename (find-library-name library))
           (regexp-symbol (cdr (assq type find-function-regexp-alist))))



reply via email to

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