aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-14 00:06:48 +0000
committerRichard M. Stallman1993-11-14 00:06:48 +0000
commitf48872fc37fcd26354e40487ba5a6927839b8928 (patch)
tree457a55d5c8620b9a618c16e7496692849406e367
parent7425bbff0a70782f3025414d871cc598a7ff6c91 (diff)
downloademacs-f48872fc37fcd26354e40487ba5a6927839b8928.tar.gz
emacs-f48872fc37fcd26354e40487ba5a6927839b8928.zip
(lpr-command): Check for irix, not silicon-graphic-unix.
-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 @@
35 35
36;;;###autoload 36;;;###autoload
37(defvar lpr-command 37(defvar lpr-command
38 (if (memq system-type '(usg-unix-v dgux-unix hpux silicon-graphics-unix)) 38 (if (memq system-type '(usg-unix-v dgux-unix hpux irix))
39 "lp" "lpr") 39 "lp" "lpr")
40 "*Shell command for printing a file") 40 "*Shell command for printing a file")
41 41