aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2013-08-02 18:47:54 -0700
committerGlenn Morris2013-08-02 18:47:54 -0700
commit5edd44c27637d73c41594b1799f26b1bc6342249 (patch)
tree69962baaf23743ef5e1f822f7efee3c9ca9e4e8e /test
parent1f21d308949823041db6f828d6c080c2a564fb05 (diff)
downloademacs-5edd44c27637d73c41594b1799f26b1bc6342249.tar.gz
emacs-5edd44c27637d73c41594b1799f26b1bc6342249.zip
Fix previous core-elisp-tests.el fix
Diffstat (limited to 'test')
-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 bb76ee25c77..40169b836d5 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 "doc" 2 :group 'blah) c-e-x) 35 (defcustom c-e-x 2 "doc" :group 'blah) c-e-x)
36 c-e-x) 36 c-e-x)
37 '(1 2))))) 37 '(1 2)))))
38 38