]> git.eshelyaron.com Git - emacs.git/commitdiff
(lpr-add-switches): Default to t on gnu/linux.
authorRichard M. Stallman <rms@gnu.org>
Tue, 27 Feb 2001 19:12:19 +0000 (19:12 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 27 Feb 2001 19:12:19 +0000 (19:12 +0000)
lisp/ChangeLog
lisp/lpr.el

index 0d59817a4f8cbd41f16131aa2f07a5d5a8b315f5..eb92d13fb397f906310e722fe58811a291a966d8 100644 (file)
@@ -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.
index 3188e96d76333e77504270e937cba1142b12fdc2..9b24a7352d19aa6fcf7941024e4fea9e6b519d1c 100644 (file)
@@ -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."