Variable: which-func-display
which-func-display is a customizable variable defined in
which-func.el.gz.
Value
mode
Documentation
Where to display the function name.
If mode, display in the mode line. If header, display in the
header line. If mode-and-header, display in both.
This variable was added, or its default value changed, in Emacs 30.1.
Probably introduced at or before Emacs version 30.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/which-func.el.gz
(defcustom which-func-display 'mode
"Where to display the function name.
If `mode', display in the mode line. If `header', display in the
header line. If `mode-and-header', display in both."
:type '(choice (const :tag "Display in mode line" mode)
(const :tag "Display in header line" header)
(const :tag "Display in both header and mode line"
mode-and-header))
:version "30.1")