comparison lisp/lpr.el @ 1068:2fee5d1fe47e

entered into RCS
author Richard M. Stallman <rms@gnu.org>
date Tue, 01 Sep 1992 20:07:45 +0000
parents 52cd80cb5be1
children c4943aceac8f
comparison
equal deleted inserted replaced
1067:eb89a883529c 1068:2fee5d1fe47e
25 25
26 ;;;###autoload 26 ;;;###autoload
27 (defconst lpr-switches nil "\ 27 (defconst lpr-switches nil "\
28 *List of strings to pass as extra switch args to lpr when it is invoked.") 28 *List of strings to pass as extra switch args to lpr when it is invoked.")
29 29
30 (defvar lpr-command (if (eq system-type 'usg-unix-v) 30 ;;;###autoload
31 "lp" "lpr") 31 (defconst lpr-command (if (eq system-type 'usg-unix-v) "lp" "lpr") "\
32 "*Shell command for printing a file") 32 *Shell command for printing a file")
33 33
34 (defvar print-region-function nil 34 (defvar print-region-function nil
35 "Function to call to print the region on a printer. 35 "Function to call to print the region on a printer.
36 See definition of `print-region-1' for calling conventions.") 36 See definition of `print-region-1' for calling conventions.")
37 37