* lpr.el (lpr-command, lpr-switches): Removed strings starting
authorJim Blandy <jimb@redhat.com>
Mon, 16 Nov 1992 01:37:46 +0000 (01:37 +0000)
committerJim Blandy <jimb@redhat.com>
Mon, 16 Nov 1992 01:37:46 +0000 (01:37 +0000)
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".

lisp/lpr.el

index c09b2e6..e8967db 100644 (file)
 ;;; 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.