Variable: lpr-headers-switches
lpr-headers-switches is a customizable variable defined in lpr.el.gz.
Value
nil
Documentation
List of strings of options to request page headings in the printer program.
If nil, we run lpr-page-header-program to make page headings
and print the result.
Source Code
;; Defined in /usr/src/emacs/lisp/lpr.el.gz
;; Default is nil, because that enables us to use pr -f
;; which is more reliable than pr with no args, which is what lpr -p does.
(defcustom lpr-headers-switches nil
"List of strings of options to request page headings in the printer program.
If nil, we run `lpr-page-header-program' to make page headings
and print the result."
:type '(choice (const nil)
(string :tag "Single argument")
(repeat :tag "Multiple arguments" (string :tag "Argument"))))