Function: TeX-format-mode-line
TeX-format-mode-line is a byte-compiled function defined in tex.el.
Signature
(TeX-format-mode-line PROCESS)
Documentation
Format the mode line for a buffer containing TeX output from PROCESS.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-format-mode-line (process)
"Format the mode line for a buffer containing TeX output from PROCESS."
(setq mode-line-process (concat " " TeX-current-page ": "
(symbol-name (process-status process))))
(force-mode-line-update))