Function: TeX-error-overview-quit
TeX-error-overview-quit is an interactive and byte-compiled function
defined in tex.el.
Signature
(TeX-error-overview-quit)
Documentation
Delete the window or the frame of the error overview.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-error-overview-quit ()
"Delete the window or the frame of the error overview."
(interactive)
(if (TeX-error-overview-setup)
(delete-frame TeX-error-overview-frame)
(delete-window))
(setq TeX-error-overview-orig-frame nil))