Function: texinfo-hierarchic-level
texinfo-hierarchic-level is a byte-compiled function defined in
texnfo-upd.el.gz.
Signature
(texinfo-hierarchic-level)
Documentation
Return the general hierarchical level of the next node in a texinfo file.
Thus, a subheading or appendixsubsec is of type subsection.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texnfo-upd.el.gz
(defun texinfo-hierarchic-level ()
"Return the general hierarchical level of the next node in a texinfo file.
Thus, a subheading or appendixsubsec is of type subsection."
(let ((case-fold-search t))
(cadr (assoc
(texinfo-specific-section-type)
texinfo-section-list))))