Variable: ps-print-header

ps-print-header is a customizable variable defined in ps-print.el.gz.

Value

t

Documentation

Non-nil means print a header at the top of each page.

By default, the header displays the buffer name, page number, and, if the buffer is visiting a file, the file's directory. Headers are customizable by changing variables ps-left-header and ps-right-header.

This variable was added, or its default value changed, in Emacs 20.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
;;; Header/Footer setup

(defcustom ps-print-header t
  "Non-nil means print a header at the top of each page.
By default, the header displays the buffer name, page number, and, if the
buffer is visiting a file, the file's directory.  Headers are customizable by
changing variables `ps-left-header' and `ps-right-header'."
  :type 'boolean
  :version "20"
  :group 'ps-print-headers)