diff options
author | Juri Linkov <juri@jurta.org> | 2005-11-28 21:19:38 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-11-28 21:19:38 +0000 |
commit | e4300bdfc8dffd3f79b7ba59664a2e457ea7fe8d (patch) | |
tree | 44cf584e8debf6ea5e55f5ea43ac3a7b5c00bd5f /lisp/info.el | |
parent | f7eeab0d229d52a11f10135c2eb4e28e28c34950 (diff) | |
download | emacs-e4300bdfc8dffd3f79b7ba59664a2e457ea7fe8d.tar.gz |
(Info-fontify-node): Set 2nd arg `noerror' of `Info-find-file' to t.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 4 |
1 files 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)))) |