Mercurial > emacs
changeset 66523:7ca34a6ac6c6
(describe-simplify-lib-file-name): Fix regexp.
author | Romain Francoise <romain@orebokech.com> |
---|---|
date | Sat, 29 Oct 2005 14:12:08 +0000 |
parents | 8f27de5a8c19 |
children | 33e9ace34df4 |
files | lisp/ChangeLog lisp/help-fns.el |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sat Oct 29 11:40:18 2005 +0000 +++ b/lisp/ChangeLog Sat Oct 29 14:12:08 2005 +0000 @@ -1,3 +1,7 @@ +2005-10-29 Romain Francoise <romain@orebokech.com> + + * help-fns.el (describe-simplify-lib-file-name): Fix regexp. + 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com> * pgg-gpg.el
--- a/lisp/help-fns.el Sat Oct 29 11:40:18 2005 +0000 +++ b/lisp/help-fns.el Sat Oct 29 14:12:08 2005 +0000 @@ -291,7 +291,7 @@ ;; Now convert that back to a file name and see if we get ;; the original one. If so, they are equivalent. (if (equal file (locate-file libname load-path '(""))) - (if (string-match "[.]elc?\\'" libname) + (if (string-match "[.]elc\\'" libname) (substring libname 0 -1) libname) file))))