Mercurial > emacs
changeset 51759:fab51788b2a1
(Info-menu-entry-name-re): Be careful to avoid multiple ways
to match the same text. Allow : after : again.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 06 Jul 2003 16:35:23 +0000 |
parents | ff38ea4b40ed |
children | e335a2d06fd8 |
files | lisp/info.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/info.el Sun Jul 06 14:55:00 2003 +0000 +++ b/lisp/info.el Sun Jul 06 16:35:23 2003 +0000 @@ -1540,7 +1540,7 @@ (setq i (+ i 1))) (Info-goto-node target))) -(defconst Info-menu-entry-name-re "\\(?:[^:\n]+\\|:[^:,.;() \t\n]\\)*" +(defconst Info-menu-entry-name-re "\\(?:[^:\n]\\|:[^,.;() \t\n]\\)*" "Regexp that matches a menu entry name upto but not including the colon. Because of ambiguities, this should be concatenated with something like `:' and `Info-following-node-name-re'.")