diff options
author | Jim Blandy <jimb@redhat.com> | 1993-02-16 00:23:06 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-02-16 00:23:06 +0000 |
commit | 4b3ed5e7ae9021c87735c84d25d007c0adb19810 (patch) | |
tree | 1db5a99a1ae8260e8fc44205f885c56ea4ffbf29 /lisp | |
parent | 92966e6f18c6f74e035d9020083f8c3f047014a7 (diff) | |
download | emacs-4b3ed5e7ae9021c87735c84d25d007c0adb19810.tar.gz emacs-4b3ed5e7ae9021c87735c84d25d007c0adb19810.tar.bz2 emacs-4b3ed5e7ae9021c87735c84d25d007c0adb19810.zip |
* informat.el (Info-tagify): Correct the regular expression which
recognizes node names to work properly with Emacs 19 regex.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/informat.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/informat.el b/lisp/informat.el index 8851558ae0f..3930378c5df 100644 --- a/lisp/informat.el +++ b/lisp/informat.el @@ -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) |