Function: LaTeX-section-menu-filter

LaTeX-section-menu-filter is a byte-compiled function defined in latex.el.

Signature

(LaTeX-section-menu-filter IGNORED)

Documentation

Filter function for the section submenu in the mode menu.

The argument IGNORED is not used in any way.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-section-menu-filter (_ignored)
  "Filter function for the section submenu in the mode menu.
The argument IGNORED is not used in any way."
  (TeX-update-style)
  (or LaTeX-section-menu
      (progn
        (setq LaTeX-section-list-changed nil)
        (mapc #'LaTeX-section-enable LaTeX-section-list)
        (setq LaTeX-section-menu
              (mapcar #'LaTeX-section-menu-entry LaTeX-section-list)))))