1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(Info-fontify-node): Set 2nd arg noerror' of Info-find-file' to t.

This commit is contained in:
Juri Linkov 2005-11-28 21:19:38 +00:00
parent f7eeab0d22
commit e4300bdfc8

View file

@ -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))))