From 7b30b20c7e8009bf7662088d370c7558f181939f Mon Sep 17 00:00:00 2001 From: Jesper Harder Date: Fri, 9 Apr 2004 14:32:49 +0000 Subject: [PATCH] (info-apropos): Improve menu item regexp. --- lisp/ChangeLog | 4 ++++ lisp/info.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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) -- 2.39.5