summaryrefslogtreecommitdiff
path: root/lisp/lpr.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-11-16 01:37:46 +0000
committerJim Blandy <jimb@redhat.com>1992-11-16 01:37:46 +0000
commit9f0a6471ed3ef58f38b0bc74e30843856a860a14 (patch)
tree35aa5c0b0929e674e1ab7f35338046fc2ab3e638 /lisp/lpr.el
parent797a37c7cbd89e19dba30204a6b12921618efe99 (diff)
downloademacs-9f0a6471ed3ef58f38b0bc74e30843856a860a14.tar.gz
* lpr.el (lpr-command, lpr-switches): Removed strings starting
with \newline; this file is loaded in loaddefs.el, and doesn't need to follow that convention. * lpr.el (lpr-command): Add dgux-unix to the list of systems which want "lp".
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r--lisp/lpr.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el
index c09b2e6102d..e8967db12a0 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -24,12 +24,14 @@
;;; Code:
;;;###autoload
-(defconst lpr-switches nil "\
-*List of strings to pass as extra switch args to lpr when it is invoked.")
+(defconst lpr-switches nil
+ "*List of strings to pass as extra switch args to lpr when it is invoked.")
;;;###autoload
-(defconst lpr-command (if (memq system-type '(usg-unix-v hpux silicon-graphics-unix)) "lp" "lpr") "\
-*Shell command for printing a file")
+(defconst lpr-command
+ (if (memq system-type '(usg-unix-v dgux-unix hpux silicon-graphics-unix))
+ "lp" "lpr")
+ "*Shell command for printing a file")
(defvar print-region-function nil
"Function to call to print the region on a printer.