Variable: ps-print-only-one-header

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

Value

nil

Documentation

Non-nil means print only one header/footer at the top/bottom of each page.

This is useful when printing more than one column, so it is possible to have only one header/footer over all columns or one header/footer per column. See also ps-print-header and ps-print-footer.

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

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defcustom ps-print-only-one-header nil
  "Non-nil means print only one header/footer at the top/bottom of each page.
This is useful when printing more than one column, so it is possible to have
only one header/footer over all columns or one header/footer per column.
See also `ps-print-header' and `ps-print-footer'."
  :type 'boolean
  :version "20"
  :group 'ps-print-headers)