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 | 587941f28a4836615d1470b0f301fccd0198f0a6 (patch) | |
tree | 9975f883e8a3b638599aa9d8117654e2b0c0dafb /lisp/lpr.el | |
parent | 34651072b8d2303de47c792db570498155ca0f17 (diff) | |
download | emacs-587941f28a4836615d1470b0f301fccd0198f0a6.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" |