Function: LaTeX-command-section-level
LaTeX-command-section-level is a byte-compiled function defined in
tex.el.
Signature
(LaTeX-command-section-level)
Documentation
Return the value of LaTeX-command-section-level(var)/LaTeX-command-section-level(fun).
Initialize it to LaTeX-largest-level(var)/LaTeX-largest-level(fun) if needed.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun LaTeX-command-section-level ()
"Return the value of `LaTeX-command-section-level'.
Initialize it to `LaTeX-largest-level' if needed."
(unless LaTeX-command-section-level
(setq LaTeX-command-section-level LaTeX-largest-level))
LaTeX-command-section-level)