From: Jesper Harder Date: Fri, 9 Apr 2004 14:32:49 +0000 (+0000) Subject: (info-apropos): Improve menu item regexp. X-Git-Tag: ttn-vms-21-2-B4~6926 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7b30b20c7e8009bf7662088d370c7558f181939f;p=emacs.git (info-apropos): Improve menu item regexp. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 308b3fdb020..1bf1fe7d51c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/info.el b/lisp/info.el index 173abe17a83..4a05da999d4 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2441,7 +2441,7 @@ Build a menu of the possible matches." (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)