diff options
| author | Richard M. Stallman | 1993-11-14 00:06:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-14 00:06:48 +0000 |
| commit | f48872fc37fcd26354e40487ba5a6927839b8928 (patch) | |
| tree | 457a55d5c8620b9a618c16e7496692849406e367 | |
| parent | 7425bbff0a70782f3025414d871cc598a7ff6c91 (diff) | |
| download | emacs-f48872fc37fcd26354e40487ba5a6927839b8928.tar.gz emacs-f48872fc37fcd26354e40487ba5a6927839b8928.zip | |
(lpr-command): Check for irix, not silicon-graphic-unix.
| -rw-r--r-- | lisp/lpr.el | 2 |
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 | ||