# HG changeset patch # User Stefan Monnier # Date 1057510841 0 # Node ID e335a2d06fd87dc0c84655395c305511e08c1ae7 # Parent fab51788b2a160d55838955da31aee3db8c356e5 (Info-menu-entry-name-re): Disallow : again: I misunderstood the problem. diff -r fab51788b2a1 -r e335a2d06fd8 lisp/info.el --- a/lisp/info.el Sun Jul 06 16:35:23 2003 +0000 +++ b/lisp/info.el Sun Jul 06 17:00:41 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'.")