# HG changeset patch # User stephent # Date 1020788044 0 # Node ID 20baef34a0b0da1be9415651e77ec20eb8984a89 # Parent 42a86787d173d7737fb3b3befd67696247591fcd [xemacs-hg @ 2002-05-07 16:13:59 by stephent] fix tab escape <87adrcueez.fsf@tleepslib.sk.tsukuba.ac.jp> diff -r 42a86787d173 -r 20baef34a0b0 lisp/ChangeLog --- a/lisp/ChangeLog Tue May 07 15:59:03 2002 +0000 +++ b/lisp/ChangeLog Tue May 07 16:14:04 2002 +0000 @@ -1,3 +1,8 @@ +2002-04-14 Golubev I. N. + + * info.el (Info-find-index-alternatives): fix missing \ in \t. + Port of `Info-index' change from 21.4. + 2002-04-23 Jerry James * select.el (get-clipboard): Document connection with diff -r 42a86787d173 -r 20baef34a0b0 lisp/info.el --- a/lisp/info.el Tue May 07 15:59:03 2002 +0000 +++ b/lisp/info.el Tue May 07 16:14:04 2002 +0000 @@ -2277,7 +2277,7 @@ (defun Info-find-index-alternatives (topic) (let ((pattern (format "\n\\* \\([^\n:]*%s[^\n:]*\\):[ \t]*%s" (regexp-quote topic) - "\\(.*\\)\\.[ t]*\\([0-9]*\\)$")) + "\\(.*\\)\\.[ \t]*\\([0-9]*\\)$")) node) (message "Searching index for `%s'..." topic) (Info-goto-node "Top")