From 35ab7deba3a54e7362ccb6ddc6079e79afdd19f9 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Wed, 22 Jan 2003 20:35:23 +0000 Subject: [PATCH] (Info-index): change pattern so that index entries with colons can be read properly; also, require at least one space after the colons, which makeinfo puts in. From: Aubrey Jaffer , 7 Nov 2002 21:16:12 -0500, sent to bug-texinfo. --- lisp/info.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/info.el b/lisp/info.el index 92e0eebaf23..56b12db6685 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1,6 +1,7 @@ ;;; info.el --- info package for Emacs -;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001, 2002 +;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001, +;; 2002, 2003 ;; Free Software Foundation, Inc. ;; Maintainer: FSF @@ -1935,7 +1936,7 @@ Give a blank topic name to go to the Index node itself." (error "The Info directory node has no index; use m to select a manual")) (let ((orignode Info-current-node) (rnode nil) - (pattern (format "\n\\* +\\([^\n:]*%s[^\n:]*\\):[ \t]*\\([^.\n]*\\)\\.[ \t]*\\([0-9]*\\)" + (pattern (format "\n\\* +\\([^\n]*%s[^\n]*\\):[ \t]+\\([^.\n]*\\)\\.[ \t]*\\([0-9]*\\)" (regexp-quote topic))) node (case-fold-search t)) -- 2.39.2