"Stephen J. Turnbull" <turnbull(a)sk.tsukuba.ac.jp> writes:
Many of our Texinfo files have file cross-references of the
following
form:
*Note Sexp Types: (widget)Sexp Types, for information about
widgets to use with the `:type' keyword.
When you try to follow this cross reference, you get a error:
No such node: Sexp Types, for information about widgets to use with the `:type'
keyword
Here's the fix.
2000-11-10 Yoshiki Hayashi <yoshiki(a)xemacs.org>
* info.el (Info-extract-menu-node-name): Comma is a delimiter.
Index: info.el
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/lisp/info.el,v
retrieving revision 1.15.2.21
diff -u -r1.15.2.21 info.el
--- info.el 2000/11/06 05:44:18 1.15.2.21
+++ info.el 2000/11/10 03:51:00
@@ -2008,7 +2008,7 @@
;; Kludge.
;; Allow dots in node name not followed by whitespace.
(re-search-forward
- (concat "\\(([^)]+)[^."
+ (concat "\\(([^)]+)[^.,"
(if multi-line "" "\n")
"]*\\|\\([^.,\t"
(if multi-line "" "\n")
--
Yoshiki Hayashi