# HG changeset patch # User Richard M. Stallman # Date 753235608 0 # Node ID 1c16610975909db79929fac12f4582842dcb94ae # Parent 28ad14078b0e740cb0b194283248fb59a4dae106 (lpr-command): Check for irix, not silicon-graphic-unix. diff -r 28ad14078b0e -r 1c1661097590 lisp/lpr.el --- a/lisp/lpr.el Sun Nov 14 00:06:23 1993 +0000 +++ b/lisp/lpr.el Sun Nov 14 00:06:48 1993 +0000 @@ -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")