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 | |
parent | 9f84479bd089ac0c1089003fed123141648a5a45 (diff) | |
download | emacs-7298f3f78950af756594c94b11f0b1c769e99f2d.tar.gz |
(lpr-add-switches): Default to t on gnu/linux.
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/lpr.el | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0d59817a4f8..eb92d13fb39 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,7 +2,8 @@ * lpr.el (lpr-page-header-switches, print-region-1): Undo 2000-07-06 change. - + (lpr-add-switches): Default to t on gnu/linux. + 2001-02-27 Gerd Moellmann <gerd@gnu.org> * bs.el (bs-attributes-list): Doc fix. 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." |