aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/lpr.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el
index c4eec3fa62b..9775abc74f9 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -140,9 +140,10 @@ See definition of `print-region-1' for calling conventions."
140 140
141;; Berkeley systems support -F, and GNU pr supports both -f and -F, 141;; Berkeley systems support -F, and GNU pr supports both -f and -F,
142;; So it looks like -F is a better default. 142;; So it looks like -F is a better default.
143(defcustom lpr-page-header-switches '("-h %s" "-F") 143(defcustom lpr-page-header-switches '("-h" "%s" "-F")
144 "*List of strings to use as options for the page-header-generating program. 144 "*List of strings to use as options for the page-header-generating program.
145If `%s' appears in one of the strings, it is substituted by the page title. 145If `%s' appears in any of the strings, it is substituted by the page title.
146Note that for correct quoting, `%s' should normally be a separate element.
146The variable `lpr-page-header-program' specifies the program to use." 147The variable `lpr-page-header-program' specifies the program to use."
147 :type '(repeat string) 148 :type '(repeat string)
148 :group 'lpr) 149 :group 'lpr)