Mercurial > hg > xemacs-beta
changeset 830:20baef34a0b0
[xemacs-hg @ 2002-05-07 16:13:59 by stephent]
fix tab escape <87adrcueez.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Tue, 07 May 2002 16:14:04 +0000 |
parents | 42a86787d173 |
children | 5d09ddada9ae |
files | lisp/ChangeLog lisp/info.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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. <gin@mo.msk.ru> + + * info.el (Info-find-index-alternatives): fix missing \ in \t. + Port of `Info-index' change from 21.4. + 2002-04-23 Jerry James <james@xemacs.org> * select.el (get-clipboard): Document connection with
--- 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")