Mercurial > emacs
changeset 54765:3129d46cd5b6
(info-apropos): Improve menu item regexp.
author | Jesper Harder <harder@ifa.au.dk> |
---|---|
date | Fri, 09 Apr 2004 14:32:49 +0000 |
parents | c3e26af4cfb1 |
children | b87089cc7e4c |
files | lisp/ChangeLog lisp/info.el |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Apr 09 13:39:30 2004 +0000 +++ b/lisp/ChangeLog Fri Apr 09 14:32:49 2004 +0000 @@ -1,3 +1,7 @@ +2004-04-09 Jesper Harder <harder@ifa.au.dk> + + * info.el (info-apropos): Improve menu item regexp. + 2004-04-09 Simon Josefsson <jas@extundo.com> * mail/smtpmail.el: Add comment, based on report by
--- a/lisp/info.el Fri Apr 09 13:39:30 2004 +0000 +++ b/lisp/info.el Fri Apr 09 14:32:49 2004 +0000 @@ -2441,7 +2441,7 @@ (message "Searching indices...") (goto-char (point-min)) (re-search-forward "\\* Menu: *\n" nil t) - (while (re-search-forward "\\*.*: (\\([^)]+\\))" nil t) + (while (re-search-forward "\\*.*: *(\\([^)]+\\))" nil t) (add-to-list 'manuals (match-string 1))) (dolist (manual manuals) (message "Searching %s" manual)