diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-10 19:21:29 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-10 19:21:29 -0700 |
commit | 99fb275649a4e1f1e022e9d1eb2881cab526934a (patch) | |
tree | 23be9a09856a5c8e531fb9bbe65f019275ca67c5 /lisp/lpr.el | |
parent | 0da7ad96c4f13101543a194f38de23f2b63a4244 (diff) | |
download | emacs-99fb275649a4e1f1e022e9d1eb2881cab526934a.tar.gz |
More custom :type fixes
* lisp/lpr.el (lpr-headers-switches):
* lisp/emacs-lisp/testcover.el (testcover-compose-functions):
* lisp/cedet/ede/project-am.el (project-am-compile-project-command): Fix :type.
* lisp/progmodes/sql.el (sql-login-params): Fix and improve :type.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el index 88567abd246..0b860ed07f1 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el @@ -125,7 +125,9 @@ argument." "List of strings of options to request page headings in the printer program. If nil, we run `lpr-page-header-program' to make page headings and print the result." - :type '(repeat (string :tag "Argument")) + :type '(choice (const nil) + (string :tag "Single argument") + (repeat :tag "Multiple arguments" (string :tag "Argument"))) :group 'lpr) (defcustom print-region-function nil |