From e4300bdfc8dffd3f79b7ba59664a2e457ea7fe8d Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Mon, 28 Nov 2005 21:19:38 +0000 Subject: [PATCH] (Info-fontify-node): Set 2nd arg `noerror' of `Info-find-file' to t. --- lisp/info.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/info.el b/lisp/info.el index 90964a61a2f..a00afce7d0a 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -3804,7 +3804,7 @@ the variable `Info-file-list-for-emacs'." (hl Info-history-list) res) (if (string-match "(\\([^)]+\\))\\([^)]*\\)" node) - (setq file (Info-find-file (match-string 1 node)) + (setq file (Info-find-file (match-string 1 node) t) node (if (equal (match-string 2 node) "") "Top" (match-string 2 node)))) @@ -3909,7 +3909,7 @@ the variable `Info-file-list-for-emacs'." (hl Info-history-list) res) (if (string-match "(\\([^)]+\\))\\([^)]*\\)" node) - (setq file (Info-find-file (match-string 1 node)) + (setq file (Info-find-file (match-string 1 node) t) node (if (equal (match-string 2 node) "") "Top" (match-string 2 node)))) -- 2.11.4.GIT