diff options
| author | Gerd Moellmann | 1999-10-27 14:32:04 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-10-27 14:32:04 +0000 |
| commit | e20192f449a364f52ea6172e6e12966fe449da0a (patch) | |
| tree | 746a658230152847965e510d99e63074af1cb551 | |
| parent | fce4437307ab8004a8d4e818d0e5897fc0d27cc9 (diff) | |
| download | emacs-e20192f449a364f52ea6172e6e12966fe449da0a.tar.gz emacs-e20192f449a364f52ea6172e6e12966fe449da0a.zip | |
(print-buffer): Doc-string fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/lpr.el | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 402b45aada9..10c62c7d106 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 1999-10-27 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * lpr.el (print-buffer): Doc-string fix. | ||
| 4 | |||
| 1 | 1999-10-27 Dave Love <fx@gnu.org> | 5 | 1999-10-27 Dave Love <fx@gnu.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp/advice.el: Doc fixes. | 7 | * emacs-lisp/advice.el: Doc fixes. |
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." | |||
| 130 | 130 | ||
| 131 | ;;;###autoload | 131 | ;;;###autoload |
| 132 | (defun print-buffer () | 132 | (defun print-buffer () |
| 133 | "Print buffer contents as with Unix command `lpr -p'. | 133 | "Paginate and print buffer contents. |
| 134 | `lpr-switches' is a list of extra switches (strings) to pass to lpr." | 134 | Normally invokes `pr' for pagination, but see the variable |
| 135 | `lpr-page-header-program'. Printing is normally done with `lpr' | ||
| 136 | or `lp'; the variable `lpr-command' changes this. | ||
| 137 | |||
| 138 | Also see the variables `lpr-switches' and `lpr-page-header-switches' | ||
| 139 | for further customization of the commands used." | ||
| 135 | (interactive) | 140 | (interactive) |
| 136 | (print-region-1 (point-min) (point-max) lpr-switches t)) | 141 | (print-region-1 (point-min) (point-max) lpr-switches t)) |
| 137 | 142 | ||