summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/info.el2
2 files changed, 5 insertions, 1 deletions
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 <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
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)