diff options
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 10 |
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. |