diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-10-27 14:32:04 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-10-27 14:32:04 +0000 |
commit | e20192f449a364f52ea6172e6e12966fe449da0a (patch) | |
tree | 746a658230152847965e510d99e63074af1cb551 /lisp/lpr.el | |
parent | fce4437307ab8004a8d4e818d0e5897fc0d27cc9 (diff) | |
download | emacs-e20192f449a364f52ea6172e6e12966fe449da0a.tar.gz |
(print-buffer): Doc-string fix.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el index dbc91790f5f..0ed7a1c418b 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el @@ -130,8 +130,13 @@ The variable `lpr-page-header-program' specifies the program to use." ;;;###autoload (defun print-buffer () - "Print buffer contents as with Unix command `lpr -p'. -`lpr-switches' is a list of extra switches (strings) to pass to lpr." + "Paginate and print buffer contents. +Normally invokes `pr' for pagination, but see the variable +`lpr-page-header-program'. Printing is normally done with `lpr' +or `lp'; the variable `lpr-command' changes this. + +Also see the variables `lpr-switches' and `lpr-page-header-switches' +for further customization of the commands used." (interactive) (print-region-1 (point-min) (point-max) lpr-switches t)) |