aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-02-07 23:42:10 +0000
committerDave Love2001-02-07 23:42:10 +0000
commit53c9f0fa7d66910f0c38b5e02cc6f2c43913f89a (patch)
treefef5685791c58e50d4e92f284cb3c5ee5d66b745
parent4c1fc0f6a808e7497f1e4ee014541f230d3cdc56 (diff)
downloademacs-53c9f0fa7d66910f0c38b5e02cc6f2c43913f89a.tar.gz
emacs-53c9f0fa7d66910f0c38b5e02cc6f2c43913f89a.zip
(print-region-function): Fix :type.
-rw-r--r--lisp/lpr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el
index 41e3f031b94..113e991f5e9 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -129,7 +129,7 @@ and print the result."
129(defcustom print-region-function nil 129(defcustom print-region-function nil
130 "Function to call to print the region on a printer. 130 "Function to call to print the region on a printer.
131See definition of `print-region-1' for calling conventions." 131See definition of `print-region-1' for calling conventions."
132 :type 'function 132 :type '(choice (const nil) function)
133 :group 'lpr) 133 :group 'lpr)
134 134
135(defcustom lpr-page-header-program "pr" 135(defcustom lpr-page-header-program "pr"