aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-07-06 16:35:23 +0000
committerStefan Monnier2003-07-06 16:35:23 +0000
commit276091310316efef57dcf66250a18c7e63be57c0 (patch)
treea1de197614a09c78143c55fdd5d5537f603016fe
parentebb8d410538fd1704ecc15c18fa27f610042eed2 (diff)
downloademacs-276091310316efef57dcf66250a18c7e63be57c0.tar.gz
emacs-276091310316efef57dcf66250a18c7e63be57c0.zip
(Info-menu-entry-name-re): Be careful to avoid multiple ways
to match the same text. Allow : after : again.
-rw-r--r--lisp/info.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el
index e12cc18e134..5277d5ba327 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -1540,7 +1540,7 @@ FOOTNOTENAME may be an abbreviation of the reference name."
1540 (setq i (+ i 1))) 1540 (setq i (+ i 1)))
1541 (Info-goto-node target))) 1541 (Info-goto-node target)))
1542 1542
1543(defconst Info-menu-entry-name-re "\\(?:[^:\n]+\\|:[^:,.;() \t\n]\\)*" 1543(defconst Info-menu-entry-name-re "\\(?:[^:\n]\\|:[^,.;() \t\n]\\)*"
1544 "Regexp that matches a menu entry name upto but not including the colon. 1544 "Regexp that matches a menu entry name upto but not including the colon.
1545Because of ambiguities, this should be concatenated with something like 1545Because of ambiguities, this should be concatenated with something like
1546`:' and `Info-following-node-name-re'.") 1546`:' and `Info-following-node-name-re'.")