Variable: mailcap-print-command

mailcap-print-command is a variable defined in mailcap.el.gz.

Value

"lpr"

Documentation

Shell command (including switches) used to print PostScript files.

Source Code

;; Defined in /usr/src/emacs/lisp/net/mailcap.el.gz
(defvar mailcap-print-command
  (mapconcat 'identity
	     (cons (if (boundp 'lpr-command)
		       lpr-command
		     "lpr")
		   (when (boundp 'lpr-switches)
		     (if (stringp lpr-switches)
			 (list lpr-switches)
		       lpr-switches)))
	     " ")
  "Shell command (including switches) used to print PostScript files.")