summaryrefslogtreecommitdiff
path: root/lisp/lpr.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1992-10-21 06:42:09 +0000
committerRichard M. Stallman <rms@gnu.org>1992-10-21 06:42:09 +0000
commit095b0393f37a024edc9ccfcb210be7063cd05c6f (patch)
treeaeeb7c482d816f9f47b758c1f4b72ac10a3c4039 /lisp/lpr.el
parent46e68cc100c23e56b230cb2661559ebf1af1c59f (diff)
downloademacs-095b0393f37a024edc9ccfcb210be7063cd05c6f.tar.gz
(lpr-command): Treat hpux and silicon-graphics-unix like usg-unix-v.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r--lisp/lpr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el
index f15a10b7a40..c09b2e6102d 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -28,7 +28,7 @@
*List of strings to pass as extra switch args to lpr when it is invoked.")
;;;###autoload
-(defconst lpr-command (if (eq system-type 'usg-unix-v) "lp" "lpr") "\
+(defconst lpr-command (if (memq system-type '(usg-unix-v hpux silicon-graphics-unix)) "lp" "lpr") "\
*Shell command for printing a file")
(defvar print-region-function nil