Function: texinfo-format-footnote
texinfo-format-footnote is a byte-compiled function defined in
texinfmt.el.gz.
Signature
(texinfo-format-footnote)
Documentation
Format a footnote in either end of node or separate node style.
The texinfo-footnote-style variable controls which style is used.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defun texinfo-format-footnote ()
"Format a footnote in either end of node or separate node style.
The texinfo-footnote-style variable controls which style is used."
(setq texinfo-footnote-number (1+ texinfo-footnote-number))
(cond ((string= texinfo-footnote-style "end")
(texinfo-format-end-node))
((string= texinfo-footnote-style "separate")
(texinfo-format-separate-node))))