Mercurial > emacs
changeset 36419:50998d3dd0bb
(lpr-page-header-switches, print-region-1): Undo 2000-07-06 change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 27 Feb 2001 19:07:09 +0000 |
parents | f1c418df78ff |
children | 213d5ac23246 |
files | lisp/lpr.el |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/lpr.el Tue Feb 27 19:06:56 2001 +0000 +++ b/lisp/lpr.el Tue Feb 27 19:07:09 2001 +0000 @@ -139,7 +139,7 @@ ;; Berkeley systems support -F, and GNU pr supports both -f and -F, ;; So it looks like -F is a better default. -(defcustom lpr-page-header-switches '("-h" "-F") +(defcustom lpr-page-header-switches '("-F") "*List of strings to use as options for the page-header-generating program. The variable `lpr-page-header-program' specifies the program to use." :type '(repeat string) @@ -242,7 +242,8 @@ (let ((new-coords (print-region-new-buffer start end))) (apply 'call-process-region (car new-coords) (cdr new-coords) lpr-page-header-program t t nil - lpr-page-header-switches)) + (nconc (list "-h" title) + lpr-page-header-switches))) (setq start (point-min) end (point-max)))) (apply (or print-region-function 'call-process-region)