diff options
author | Dave Love <fx@gnu.org> | 2001-02-07 23:42:10 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2001-02-07 23:42:10 +0000 |
commit | 53c9f0fa7d66910f0c38b5e02cc6f2c43913f89a (patch) | |
tree | fef5685791c58e50d4e92f284cb3c5ee5d66b745 /lisp/lpr.el | |
parent | 4c1fc0f6a808e7497f1e4ee014541f230d3cdc56 (diff) | |
download | emacs-53c9f0fa7d66910f0c38b5e02cc6f2c43913f89a.tar.gz |
(print-region-function): Fix :type.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 2 |
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." (defcustom print-region-function nil "Function to call to print the region on a printer. See definition of `print-region-1' for calling conventions." - :type 'function + :type '(choice (const nil) function) :group 'lpr) (defcustom lpr-page-header-program "pr" |