summaryrefslogtreecommitdiff
path: root/lisp/lpr.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-11-14 00:06:48 +0000
committerRichard M. Stallman <rms@gnu.org>1993-11-14 00:06:48 +0000
commitf48872fc37fcd26354e40487ba5a6927839b8928 (patch)
tree457a55d5c8620b9a618c16e7496692849406e367 /lisp/lpr.el
parent7425bbff0a70782f3025414d871cc598a7ff6c91 (diff)
downloademacs-f48872fc37fcd26354e40487ba5a6927839b8928.tar.gz
(lpr-command): Check for irix, not silicon-graphic-unix.
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 8ffb7f37e9b..6e92289709d 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -35,7 +35,7 @@
;;;###autoload
(defvar lpr-command
- (if (memq system-type '(usg-unix-v dgux-unix hpux silicon-graphics-unix))
+ (if (memq system-type '(usg-unix-v dgux-unix hpux irix))
"lp" "lpr")
"*Shell command for printing a file")