# HG changeset patch # User Jesper Harder # Date 1081521169 0 # Node ID 3129d46cd5b66c7abd7ad8f59a48b91947e354ca # Parent c3e26af4cfb1594d671bba8cd5bb363ea34b6738 (info-apropos): Improve menu item regexp. diff -r c3e26af4cfb1 -r 3129d46cd5b6 lisp/ChangeLog --- 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 + + * info.el (info-apropos): Improve menu item regexp. + 2004-04-09 Simon Josefsson * mail/smtpmail.el: Add comment, based on report by diff -r c3e26af4cfb1 -r 3129d46cd5b6 lisp/info.el --- 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)