# HG changeset patch # User Juri Linkov # Date 1133212778 0 # Node ID b961a70a132c649eba5c7b538462e3246b7761cd # Parent 2ff424a9019b418b940ce2fbf2e8ab0eaaaab44e (Info-fontify-node): Set 2nd arg `noerror' of `Info-find-file' to t. diff -r 2ff424a9019b -r b961a70a132c lisp/info.el --- a/lisp/info.el Mon Nov 28 20:22:04 2005 +0000 +++ b/lisp/info.el Mon Nov 28 21:19:38 2005 +0000 @@ -3804,7 +3804,7 @@ (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 @@ (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))))