comparison lisp/lpr.el @ 13894:eeee95f4d989

(lpr-page-header-switches, lpr-headers-switches): Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Sat, 30 Dec 1995 16:44:15 +0000
parents e0bae9f528fe
children 83f275dcd93a
comparison
equal deleted inserted replaced
13893:2576d1142ed3 13894:eeee95f4d989
47 "*Name of program for printing a file.") 47 "*Name of program for printing a file.")
48 48
49 ;; Default is nil, because that enables us to use pr -f 49 ;; Default is nil, because that enables us to use pr -f
50 ;; which is more reliable than pr with no args, which is what lpr -p does. 50 ;; which is more reliable than pr with no args, which is what lpr -p does.
51 (defvar lpr-headers-switches nil 51 (defvar lpr-headers-switches nil
52 "*List of strings to use as options for `lpr' to request page headings. 52 "*List of strings of options to request page headings in the printer program.
53 If nil, we run `lpr-page-header-program' to make page headings 53 If nil, we run `lpr-page-header-program' to make page headings
54 and print the result.") 54 and print the result.")
55 55
56 (defvar print-region-function nil 56 (defvar print-region-function nil
57 "Function to call to print the region on a printer. 57 "Function to call to print the region on a printer.
59 59
60 (defvar lpr-page-header-program "pr" 60 (defvar lpr-page-header-program "pr"
61 "*Name of program for adding page headers to a file.") 61 "*Name of program for adding page headers to a file.")
62 62
63 (defvar lpr-page-header-switches '("-f") 63 (defvar lpr-page-header-switches '("-f")
64 "*List of strings to use as options for `lpr-page-header-program'.") 64 "*List of strings to use as options for the page-header-generating program.
65 The variable `lpr-page-header-program' specifies the program to use.")
65 66
66 ;;;###autoload 67 ;;;###autoload
67 (defun lpr-buffer () 68 (defun lpr-buffer ()
68 "Print buffer contents as with Unix command `lpr'. 69 "Print buffer contents as with Unix command `lpr'.
69 `lpr-switches' is a list of extra switches (strings) to pass to lpr." 70 `lpr-switches' is a list of extra switches (strings) to pass to lpr."