changeset 1880:36ec0bfbb2c2

* informat.el (Info-tagify): Correct the regular expression which recognizes node names to work properly with Emacs 19 regex.
author Jim Blandy <jimb@redhat.com>
date Tue, 16 Feb 1993 00:23:06 +0000
parents c9b4ece292cc
children 436edc3e74f6
files lisp/informat.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/informat.el	Mon Feb 15 19:02:55 1993 +0000
+++ b/lisp/informat.el	Tue Feb 16 00:23:06 1993 +0000
@@ -44,7 +44,7 @@
 	  (goto-char (point-min))
 	  (if (search-forward "\^_\nIndirect:\n" nil t)
 	      (message "Cannot tagify split info file")
-	    (let ((regexp "Node:[ \t]*\\([^,\n\t]\\)*[,\t\n]")
+	    (let ((regexp "Node:[ \t]*\\([^,\n\t]*\\)[,\t\n]")
 		  (case-fold-search t)
 		  list)
 	      (while (search-forward "\n\^_" nil t)