diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-02-27 19:12:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-02-27 19:12:19 +0000 |
commit | 7298f3f78950af756594c94b11f0b1c769e99f2d (patch) | |
tree | 07a8a3c1d6f54f8c6d91d6373eb415dd4d306d6f /lisp/lpr.el | |
parent | 9f84479bd089ac0c1089003fed123141648a5a45 (diff) | |
download | emacs-7298f3f78950af756594c94b11f0b1c769e99f2d.tar.gz |
(lpr-add-switches): Default to t on gnu/linux.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el index 3188e96d763..9b24a7352d1 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el @@ -76,8 +76,8 @@ See `lpr-command'." :type '(repeat (string :tag "Argument")) :group 'lpr) -(defcustom lpr-add-switches (eq system-type 'berkeley-unix) - "*Non-nil means construct -T and -J options for the printer program. +(defcustom lpr-add-switches (memq system-type '(berkeley-unix gnu/linux)) + "*Non-nil means construct `-T' and `-J' options for the printer program. These are made assuming that the program is `lpr'; if you are using some other incompatible printer program, this variable should be nil." |