diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-10-21 06:42:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-10-21 06:42:09 +0000 |
commit | 9e326bc1efa1d94e008878cab57cd28a7b9b0dda (patch) | |
tree | f48beb9f9b2aaee85421b2b9f46c1210e3f5dd6f /lisp/lpr.el | |
parent | 7270bdb0d65063b625cfba53a547902ed63c9243 (diff) | |
download | emacs-9e326bc1efa1d94e008878cab57cd28a7b9b0dda.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.el | 2 |
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 |