diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-11-13 12:15:29 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-11-13 12:15:29 +0000 |
commit | 87b8e150eb59ffd39389b7f225fbea73e0ad114f (patch) | |
tree | 0fbe1fed0c48fb4f94550bf273f2386788539f76 /lisp/lpr.el | |
parent | 1855c8dd0bbe4d990c083cf077f85b989b4a8f6f (diff) | |
download | emacs-87b8e150eb59ffd39389b7f225fbea73e0ad114f.tar.gz |
(lpr-headers-switches): Base default on lpr-command value.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el index a2c9cd55345..4299ef1d30f 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el @@ -43,7 +43,7 @@ "*Name of program for printing a file.") (defvar lpr-headers-switches - (if (memq system-type '(usg-unix-v dgux hpux irix)) nil "-p") + (if (equal lpr-command "lpr") "-p" nil) "*List of strings to use as options for `lpr' to request page headings.") (defvar print-region-function nil |