Variable: diary-header-line-format
diary-header-line-format is a customizable variable defined in
diary-lib.el.gz.
Value
(:eval
(calendar-string-spread
(list
(if diary-selective-display "Some text is hidden - press \"C-c C-s\" before edit/copy" "Diary"))
32
(window-width)))
Documentation
Format of the header line displayed by diary-simple-display.
Only used if diary-header-line-flag is non-nil.
This variable was added, or its default value changed, in Emacs 23.3.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/diary-lib.el.gz
(defcustom diary-header-line-format
'(:eval (calendar-string-spread
(list (if diary-selective-display
"Some text is hidden - press \"C-c C-s\" before edit/copy"
"Diary"))
?\s (window-width)))
"Format of the header line displayed by `diary-simple-display'.
Only used if `diary-header-line-flag' is non-nil."
:group 'diary
:type 'sexp
:risky t
:initialize 'custom-initialize-default
:set 'diary-set-header
:version "23.3") ; frame-width -> window-width