Function: mode-line-frame-control

mode-line-frame-control is a byte-compiled function defined in bindings.el.gz.

Signature

(mode-line-frame-control)

Documentation

Compute mode line construct for frame identification.

Value is used for mode-line-frame-identification, which see.

Source Code

;; Defined in /usr/src/emacs/lisp/bindings.el.gz
;; MSDOS frames have window-system, but want the Fn identification.
(defun mode-line-frame-control ()
  "Compute mode line construct for frame identification.
Value is used for `mode-line-frame-identification', which see."
  (if (or (null window-system)
	  (eq window-system 'pc))
      " %F  "
    "  "))