changeset 1615:21e2defc55c0

* 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".
author Jim Blandy <jimb@redhat.com>
date Mon, 16 Nov 1992 01:37:46 +0000
parents 567e76c81b0c
children 46528118f75d
files lisp/lpr.el
diffstat 1 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/lpr.el	Mon Nov 16 01:37:06 1992 +0000
+++ b/lisp/lpr.el	Mon Nov 16 01:37:46 1992 +0000
@@ -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.