From: Juri Linkov Date: Mon, 28 Nov 2005 21:19:38 +0000 (+0000) Subject: (Info-fontify-node): Set 2nd arg `noerror' of `Info-find-file' to t. X-Git-Tag: emacs-pretest-22.0.90~5621 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e4300bdfc8dffd3f79b7ba59664a2e457ea7fe8d;p=emacs.git (Info-fontify-node): Set 2nd arg `noerror' of `Info-find-file' to t. --- 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))))