summaryrefslogtreecommitdiff
path: root/lisp/lpr.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-01-06 09:22:49 +0000
committerRichard M. Stallman <rms@gnu.org>1994-01-06 09:22:49 +0000
commit360f17201e2791cdc3d74c5f8d178718bf0f1c04 (patch)
tree831d33fb6633522a3ab0be2a109217bc4cd36136 /lisp/lpr.el
parent21749fb6b18d4e36e4f8f566e2a6a5cf38cf46a9 (diff)
downloademacs-360f17201e2791cdc3d74c5f8d178718bf0f1c04.tar.gz
(lpr-headers-switches): Set proper value on hpux and usg.
Diffstat (limited to 'lisp/lpr.el')
-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 @@
"lp" "lpr")
"*Shell command for printing a file")
-(defvar lpr-headers-switches (or (memq system-type '(usg-unix-v hpux)) "-p")
+(defvar lpr-headers-switches
+ (if (memq system-type '(usg-unix-v hpux)) nil "-p")
"*List of strings to use as options for `lpr' to request page headings.")
(defvar print-region-function nil