Variable: lpr-printer-switch
lpr-printer-switch is a customizable variable defined in lpr.el.gz.
Value
"-P"
Documentation
Printer switch, that is, something like "-P", "-d ", "/D:", etc.
This switch is used in conjunction with printer-name.
Source Code
;; Defined in /usr/src/emacs/lisp/lpr.el.gz
(defcustom lpr-printer-switch
(if lpr-lp-system
"-d "
"-P")
"Printer switch, that is, something like \"-P\", \"-d \", \"/D:\", etc.
This switch is used in conjunction with `printer-name'."
:type '(choice :menu-tag "Printer Name Switch"
:tag "Printer Name Switch"
(const :tag "None" nil)
(string :tag "Printer Switch")))