Function: texinfo-every-node-update

texinfo-every-node-update is an autoloaded, interactive and byte-compiled function defined in texnfo-upd.el.gz.

Signature

(texinfo-every-node-update)

Documentation

Update every node in a Texinfo file.

Warning: do NOT use this function if your Texinfo file uses @node lines without the Next, Previous, Up pointers, because the result could be an invalid Texinfo file due to known deficiencies in this command: it does not support @ignore and @if* directives.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texnfo-upd.el.gz
;;;###autoload
(defun texinfo-every-node-update ()
  "Update every node in a Texinfo file.

Warning: do NOT use this function if your Texinfo file uses @node
lines without the `Next', `Previous', `Up' pointers, because the
result could be an invalid Texinfo file due to known deficiencies
in this command: it does not support @ignore and @if* directives."
  (interactive)
  (save-excursion
    (texinfo-update-node (point-min) (point-max))
    (message "Done...updated every node.  You may save the buffer.")))