* informat.el (Info-tagify): Correct the regular expression which
recognizes node names to work properly with Emacs 19 regex.
This commit is contained in:
parent
92966e6f18
commit
4b3ed5e7ae
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue