Function: texinfo-sequentially-update-the-node
texinfo-sequentially-update-the-node is a byte-compiled function
defined in texnfo-upd.el.gz.
Signature
(texinfo-sequentially-update-the-node)
Documentation
Update one node such that the pointers are sequential.
A Next or Previous pointer points to any preceding or following node,
regardless of its hierarchical level.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texnfo-upd.el.gz
(defun texinfo-sequentially-update-the-node ()
"Update one node such that the pointers are sequential.
A `Next' or `Previous' pointer points to any preceding or following node,
regardless of its hierarchical level."
(texinfo-check-for-node-name)
(texinfo-delete-existing-pointers)
(message
"Sequentially updating node: %s ... " (texinfo-copy-node-name))
(save-restriction
(widen)
(let* ((case-fold-search t)
(level (texinfo-hierarchic-level)))
(if (eq level 1)
(texinfo-top-pointer-case)
;; else
(texinfo-sequentially-insert-pointer level 'next)
(texinfo-sequentially-insert-pointer level 'previous)
(texinfo-sequentially-insert-pointer level 'up)
(texinfo-clean-up-node-line)))))