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
commit058f56ba9538d5fad0d31cd90e1804beb98b9889 (patch)
treee2f35855ecbbd215d6dfa32b9adf198787d319eb /lisp/lpr.el
parent4844fc0a2b2721b835adc47a023d2d21bdb32d76 (diff)
downloademacs-058f56ba9538d5fad0d31cd90e1804beb98b9889.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.