(Info-find-node-2): Put initial point below the header line and breadcrumbs line.

This commit is contained in:
Juri Linkov 2008-10-18 23:05:11 +00:00
parent ca32d854d6
commit 73bde1a893
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2008-10-18 Juri Linkov <juri@jurta.org>
* info.el (Info-find-node-2): Put initial point below the header line
and breadcrumbs line.
2008-10-18 Glenn Morris <rgm@gnu.org>
* doc-view.el (doc-view-pdf->txt, doc-view-ps->pdf): Give an error if

View file

@ -966,6 +966,10 @@ a case-insensitive match is tried."
(Info-select-node)
(goto-char (point-min))
(forward-line 1) ; skip header line
(when (> Info-breadcrumbs-depth 0) ; skip breadcrumbs line
(forward-line 1))
(cond (anchorpos
(let ((new-history (list Info-current-file
(substring-no-properties nodename))))