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 | 9897e2d538688ed4ef8db43bfb7f68f3f7487e50 (patch) | |
tree | 2044a537eb370c75873ad1a278ba6ff08d4567d9 /lisp/lpr.el | |
parent | ac8a83413fc8568524199285944550f1e905006a (diff) | |
download | emacs-9897e2d538688ed4ef8db43bfb7f68f3f7487e50.tar.gz |
(lpr-headers-switches): Set proper value on hpux and usg.
Diffstat (limited to 'lisp/lpr.el')
-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 |