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/emacs-lisp/testcover.el | |
parent | 0da7ad96c4f13101543a194f38de23f2b63a4244 (diff) | |
download | emacs-99fb275649a4e1f1e022e9d1eb2881cab526934a.tar.gz emacs-99fb275649a4e1f1e022e9d1eb2881cab526934a.tar.bz2 emacs-99fb275649a4e1f1e022e9d1eb2881cab526934a.zip |
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/emacs-lisp/testcover.el')
-rw-r--r-- | lisp/emacs-lisp/testcover.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/testcover.el b/lisp/emacs-lisp/testcover.el index 33bb1e3a732..a5619583145 100644 --- a/lisp/emacs-lisp/testcover.el +++ b/lisp/emacs-lisp/testcover.el @@ -118,7 +118,7 @@ calls to one of the `testcover-1value-functions', so if that's true then no brown splotch is shown for these. This list is quite incomplete! Most side-effect-free functions should be here." :group 'testcover - :type 'hook) + :type '(repeat symbol)) (defcustom testcover-progn-functions '(define-key fset function goto-char mapc overlay-put progn |