Function: LaTeX-maybe-install-toolbar

LaTeX-maybe-install-toolbar is a byte-compiled function defined in latex.el.

Signature

(LaTeX-maybe-install-toolbar)

Documentation

Conditionally install tool bar buttons for LaTeX mode.

Install tool bar if LaTeX-enable-toolbar and tool-bar-mode(var)/tool-bar-mode(fun) are non-nil.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-maybe-install-toolbar ()
  "Conditionally install tool bar buttons for LaTeX mode.
Install tool bar if `LaTeX-enable-toolbar' and `tool-bar-mode'
are non-nil."
  (when (and LaTeX-enable-toolbar tool-bar-mode)
    ;; Defined in `tex-bar.el':
    (LaTeX-install-toolbar)))