aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2016-01-12 20:04:49 -0500
committerGlenn Morris2016-01-12 20:04:49 -0500
commit0ae1a144a83cbfe8bba1abb295ece69c4dcff5f7 (patch)
tree5416d20edfcd8a953e55625af5403ae6f8ac0be2
parent0d7bdee57737ea4e51c45cd0ae68656f03010b4a (diff)
downloademacs-0ae1a144a83cbfe8bba1abb295ece69c4dcff5f7.tar.gz
emacs-0ae1a144a83cbfe8bba1abb295ece69c4dcff5f7.zip
* test/automated/core-elisp-tests.el
(core-elisp-tests-1-defvar-in-let): Add a custom type.
-rw-r--r--test/automated/core-elisp-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/automated/core-elisp-tests.el b/test/automated/core-elisp-tests.el
index 76985331566..b44bb37cc4f 100644
--- a/test/automated/core-elisp-tests.el
+++ b/test/automated/core-elisp-tests.el
@@ -32,7 +32,7 @@
32 (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x) 32 (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x)
33 '(1 2))) 33 '(1 2)))
34 (should (equal (list (let ((c-e-x 1)) 34 (should (equal (list (let ((c-e-x 1))
35 (defcustom c-e-x 2 "doc" :group 'blah) c-e-x) 35 (defcustom c-e-x 2 "doc" :group 'blah :type 'integer) c-e-x)
36 c-e-x) 36 c-e-x)
37 '(1 2))))) 37 '(1 2)))))
38 38