aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-06 09:22:49 +0000
committerRichard M. Stallman1994-01-06 09:22:49 +0000
commit9897e2d538688ed4ef8db43bfb7f68f3f7487e50 (patch)
tree2044a537eb370c75873ad1a278ba6ff08d4567d9
parentac8a83413fc8568524199285944550f1e905006a (diff)
downloademacs-9897e2d538688ed4ef8db43bfb7f68f3f7487e50.tar.gz
emacs-9897e2d538688ed4ef8db43bfb7f68f3f7487e50.zip
(lpr-headers-switches): Set proper value on hpux and usg.
-rw-r--r--lisp/lpr.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el
index bf27a8b8012..cd278451f7a 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -42,7 +42,8 @@
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 (or (memq system-type '(usg-unix-v hpux)) "-p") 45(defvar lpr-headers-switches
46 (if (memq system-type '(usg-unix-v hpux)) nil "-p")
46 "*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.")
47 48
48(defvar print-region-function nil 49(defvar print-region-function nil