]> git.eshelyaron.com Git - emacs.git/commitdiff
(lpr-command, lpr-headers-switches): Undo previous change.
authorRichard M. Stallman <rms@gnu.org>
Fri, 19 Aug 1994 04:38:14 +0000 (04:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 19 Aug 1994 04:38:14 +0000 (04:38 +0000)
lisp/lpr.el

index 4af86a1e742cecf31edeac825e3f6f3a4a9fc3f9..7f5ff8d15426bca78ed15680ce4fe7aadbef17db 100644 (file)
 
 ;;;###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