aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-02-27 19:12:19 +0000
committerRichard M. Stallman2001-02-27 19:12:19 +0000
commit7298f3f78950af756594c94b11f0b1c769e99f2d (patch)
tree07a8a3c1d6f54f8c6d91d6373eb415dd4d306d6f
parent9f84479bd089ac0c1089003fed123141648a5a45 (diff)
downloademacs-7298f3f78950af756594c94b11f0b1c769e99f2d.tar.gz
emacs-7298f3f78950af756594c94b11f0b1c769e99f2d.zip
(lpr-add-switches): Default to t on gnu/linux.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/lpr.el4
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 @@
2 2
3 * lpr.el (lpr-page-header-switches, print-region-1): 3 * lpr.el (lpr-page-header-switches, print-region-1):
4 Undo 2000-07-06 change. 4 Undo 2000-07-06 change.
5 5 (lpr-add-switches): Default to t on gnu/linux.
6
62001-02-27 Gerd Moellmann <gerd@gnu.org> 72001-02-27 Gerd Moellmann <gerd@gnu.org>
7 8
8 * bs.el (bs-attributes-list): Doc fix. 9 * 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'."
76 :type '(repeat (string :tag "Argument")) 76 :type '(repeat (string :tag "Argument"))
77 :group 'lpr) 77 :group 'lpr)
78 78
79(defcustom lpr-add-switches (eq system-type 'berkeley-unix) 79(defcustom lpr-add-switches (memq system-type '(berkeley-unix gnu/linux))
80 "*Non-nil means construct -T and -J options for the printer program. 80 "*Non-nil means construct `-T' and `-J' options for the printer program.
81These are made assuming that the program is `lpr'; 81These are made assuming that the program is `lpr';
82if you are using some other incompatible printer program, 82if you are using some other incompatible printer program,
83this variable should be nil." 83this variable should be nil."