summaryrefslogtreecommitdiff
path: root/admin/cus-test.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-08-13 00:42:51 -0700
committerGlenn Morris <rgm@gnu.org>2013-08-13 00:42:51 -0700
commitf0024d8c0dbe5dcb2551bf2433af39ffe7cb8f7a (patch)
tree325046b1f3fb9cffa88ac99ce51a16eb5edc0c76 /admin/cus-test.el
parentae3f0661b3baf53dec77c14b9b54530094f09904 (diff)
downloademacs-f0024d8c0dbe5dcb2551bf2433af39ffe7cb8f7a.tar.gz
Fix some custom types
* lisp/cus-start.el (truncate-partial-width-windows): Fix type. * lisp/emulation/viper-init.el (viper-search-scroll-threshold): Fix type. * lisp/mail/feedmail.el (feedmail-confirm-outgoing) (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types. * admin/admin.el: Related comments.
Diffstat (limited to 'admin/cus-test.el')
-rw-r--r--admin/cus-test.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/admin/cus-test.el b/admin/cus-test.el
index 6b8ec9abe02..54d26cc11d6 100644
--- a/admin/cus-test.el
+++ b/admin/cus-test.el
@@ -202,6 +202,8 @@ The detected problematic options are stored in `cus-test-errors'."
;; Check the values
(mapc (lambda (value)
+ ;; TODO for booleans, check for values that can be
+ ;; evaluated and are not t or nil. Usually a bug.
(unless (widget-apply conv :match value)
(setq mismatch 'mismatch)))
values)