From: Andrea Corallo Date: Mon, 9 Mar 2020 07:47:57 +0000 (+0000) Subject: * Fix regexp instroduced by f055f52321 X-Git-Tag: emacs-28.0.90~2727^2~785 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9838ee7ed870844470703b2648f8b59c0575bd46;p=emacs.git * Fix regexp instroduced by f055f52321 --- diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 21c10029ac4..fa87b255699 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -187,7 +187,7 @@ LIBRARY should be a string (the name of the library)." (cond ((string-match "\\.el\\(c\\(\\..*\\)?\\)\\'" library) (setq library (replace-match "" t t library))) - ((string-match "\\.eln$" library) + ((string-match "\\.eln\\'" library) ;; From help-fns.el. (setq library (expand-file-name (concat (file-name-base library) ".el")