Variable: TeX-error-overview-frame-parameters
TeX-error-overview-frame-parameters is a customizable variable defined
in tex.el.
Value
((name . "TeX errors") (title . "TeX errors") (height . 10)
(width . 80) (top - 0) (left - 0) (unsplittable . t) (minibuffer)
(vertical-scroll-bars . t) (tool-bar-lines . 0))
Documentation
Parameters of the error overview frame.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-error-overview-frame-parameters
'((name . "TeX errors")
(title . "TeX errors")
(height . 10)
(width . 80)
(top . (- 0))
(left . (- 0))
(unsplittable . t)
(minibuffer . nil)
(vertical-scroll-bars . t)
(tool-bar-lines . 0))
"Parameters of the error overview frame."
:group 'TeX-output
:type 'alist
:options '((name string) (title string) (height integer) (width integer)
(top integer) (left integer) (unsplittable boolean)
(minibuffer boolean) (vertical-scroll-bars boolean)
(tool-bar-lines integer)))