aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-27 14:32:04 +0000
committerGerd Moellmann1999-10-27 14:32:04 +0000
commite20192f449a364f52ea6172e6e12966fe449da0a (patch)
tree746a658230152847965e510d99e63074af1cb551
parentfce4437307ab8004a8d4e818d0e5897fc0d27cc9 (diff)
downloademacs-e20192f449a364f52ea6172e6e12966fe449da0a.tar.gz
emacs-e20192f449a364f52ea6172e6e12966fe449da0a.zip
(print-buffer): Doc-string fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/lpr.el9
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 @@
11999-10-27 Gerd Moellmann <gerd@gnu.org>
2
3 * lpr.el (print-buffer): Doc-string fix.
4
11999-10-27 Dave Love <fx@gnu.org> 51999-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." 134Normally invokes `pr' for pagination, but see the variable
135`lpr-page-header-program'. Printing is normally done with `lpr'
136or `lp'; the variable `lpr-command' changes this.
137
138Also see the variables `lpr-switches' and `lpr-page-header-switches'
139for 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