Variable: TeX-error-overview-setup

TeX-error-overview-setup is a customizable variable defined in tex.el.

Value

nil

Documentation

The frame setup of the error overview.

The possible value is: separate-frame (error oveview in a separate frame); with a nil value the current frame is used.

If the display does not support multi frame, the current frame will be used regardless of the value of this variable.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-error-overview-setup nil
  "The frame setup of the error overview.

The possible value is: `separate-frame' (error oveview in a
separate frame); with a nil value the current frame is used.

If the display does not support multi frame, the current frame
will be used regardless of the value of this variable."
  :group 'TeX-output
  :type '(choice
          (const :tag "Error overview in separate frame" separate-frame)
          (const :tag "Use current frame" nil)))