changeset 8566:ce5ba216927d

(lpr-command, lpr-headers-switches): Undo previous change.
author Richard M. Stallman <rms@gnu.org>
date Fri, 19 Aug 1994 04:38:14 +0000
parents 2a2208286955
children 5447a2a6972e
files lisp/lpr.el
diffstat 1 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/lpr.el	Thu Aug 18 21:03:37 1994 +0000
+++ b/lisp/lpr.el	Fri Aug 19 04:38:14 1994 +0000
@@ -38,15 +38,12 @@
 
 ;;;###autoload
 (defvar lpr-command
-  (if (and (memq system-type '(usg-unix-v dgux hpux irix))
-	   (not (string-match "^[^-]*-[^-]*-solaris" system-configuration)))
+  (if (memq system-type '(usg-unix-v dgux hpux irix))
       "lp" "lpr")
   "*Shell command for printing a file")
 
 (defvar lpr-headers-switches
-  (if (and (memq system-type '(usg-unix-v hpux))
-	   (not (string-match "^[^-]*-[^-]*-solaris" system-configuration)))
-      nil "-p")
+  (if (memq system-type '(usg-unix-v hpux)) nil "-p")
   "*List of strings to use as options for `lpr' to request page headings.")
 
 (defvar print-region-function nil