Function: TeX-command-mode-line

TeX-command-mode-line is a byte-compiled function defined in tex.el.

Signature

(TeX-command-mode-line PROCESS)

Documentation

Format the mode line for a buffer containing output from PROCESS.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;;; Process Filters

(defun TeX-command-mode-line (process)
  "Format the mode line for a buffer containing output from PROCESS."
    (setq mode-line-process (concat ": "
                                    (symbol-name (process-status process))))
    (force-mode-line-update))