1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-08 15:35:02 +00:00

Fix previous core-elisp-tests.el fix

This commit is contained in:
Glenn Morris 2013-08-02 18:47:54 -07:00
parent 1f21d30894
commit 5edd44c276

View File

@ -32,7 +32,7 @@
(should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x)
'(1 2)))
(should (equal (list (let ((c-e-x 1))
(defcustom c-e-x "doc" 2 :group 'blah) c-e-x)
(defcustom c-e-x 2 "doc" :group 'blah) c-e-x)
c-e-x)
'(1 2)))))