]> git.eshelyaron.com Git - emacs.git/commitdiff
(print-buffer): Doc-string fix.
authorGerd Moellmann <gerd@gnu.org>
Wed, 27 Oct 1999 14:32:04 +0000 (14:32 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 27 Oct 1999 14:32:04 +0000 (14:32 +0000)
lisp/ChangeLog
lisp/lpr.el

index 402b45aada954b9d7bfd5663777bdc06f62de3c5..10c62c7d106e3b9365094d6448d65a9fd7239aac 100644 (file)
@@ -1,3 +1,7 @@
+1999-10-27  Gerd Moellmann  <gerd@gnu.org>
+
+       * lpr.el (print-buffer): Doc-string fix.
+
 1999-10-27  Dave Love  <fx@gnu.org>
 
        * emacs-lisp/advice.el: Doc fixes.
index dbc91790f5fbe7c3e5bfe4e452fa4f0e127ba667..0ed7a1c418b4042d903b0658d84c32719dc75a49 100644 (file)
@@ -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))