diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-01-06 09:22:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-01-06 09:22:49 +0000 |
commit | 360f17201e2791cdc3d74c5f8d178718bf0f1c04 (patch) | |
tree | 831d33fb6633522a3ab0be2a109217bc4cd36136 /lisp | |
parent | 21749fb6b18d4e36e4f8f566e2a6a5cf38cf46a9 (diff) | |
download | emacs-360f17201e2791cdc3d74c5f8d178718bf0f1c04.tar.gz |
(lpr-headers-switches): Set proper value on hpux and usg.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/lpr.el | 3 |
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 |