comparison lisp/lpr.el @ 8598:d49cb56cce45

(lpr-headers-switches): Don't use -p on dgux, irix.
author Richard M. Stallman <rms@gnu.org>
date Tue, 23 Aug 1994 22:43:43 +0000
parents ce5ba216927d
children 8cf9181c119e
comparison
equal deleted inserted replaced
8597:cfd5153bc220 8598:d49cb56cce45
41 (if (memq system-type '(usg-unix-v dgux hpux irix)) 41 (if (memq system-type '(usg-unix-v dgux hpux irix))
42 "lp" "lpr") 42 "lp" "lpr")
43 "*Shell command for printing a file") 43 "*Shell command for printing a file")
44 44
45 (defvar lpr-headers-switches 45 (defvar lpr-headers-switches
46 (if (memq system-type '(usg-unix-v hpux)) nil "-p") 46 (if (memq system-type '(usg-unix-v dgux hpux irix)) nil "-p")
47 "*List of strings to use as options for `lpr' to request page headings.") 47 "*List of strings to use as options for `lpr' to request page headings.")
48 48
49 (defvar print-region-function nil 49 (defvar print-region-function nil
50 "Function to call to print the region on a printer. 50 "Function to call to print the region on a printer.
51 See definition of `print-region-1' for calling conventions.") 51 See definition of `print-region-1' for calling conventions.")