Function: texinfo-sequentially-insert-pointer
texinfo-sequentially-insert-pointer is a byte-compiled function
defined in texnfo-upd.el.gz.
Signature
(texinfo-sequentially-insert-pointer LEVEL DIRECTION)
Documentation
Insert the Next, Previous or Up node name at point.
Move point forward.
The first argument is the hierarchical level of the Texinfo file, a
string such as "section". The second argument is direction, one of
next, previous, or up.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texnfo-upd.el.gz
(defun texinfo-sequentially-insert-pointer (level direction)
"Insert the `Next', `Previous' or `Up' node name at point.
Move point forward.
The first argument is the hierarchical level of the Texinfo file, a
string such as \"section\". The second argument is direction, one of
`next', `previous', or `up'."
(end-of-line)
(insert
", "
(save-excursion
(texinfo-pointer-name
(texinfo-sequentially-find-pointer level direction)))))