diff options
author | Glenn Morris <rgm@gnu.org> | 2013-08-02 18:43:30 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-08-02 18:43:30 -0700 |
commit | 1f21d308949823041db6f828d6c080c2a564fb05 (patch) | |
tree | da7ab85268d71f686410f8b88fa6dfcfe95cdc6f /test/automated/core-elisp-tests.el | |
parent | f3ffcd8c96c9dc7cbea1a705b31b494a94c0ecac (diff) | |
download | emacs-1f21d308949823041db6f828d6c080c2a564fb05.tar.gz emacs-1f21d308949823041db6f828d6c080c2a564fb05.tar.bz2 emacs-1f21d308949823041db6f828d6c080c2a564fb05.zip |
* test/automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
Diffstat (limited to 'test/automated/core-elisp-tests.el')
-rw-r--r-- | test/automated/core-elisp-tests.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/automated/core-elisp-tests.el b/test/automated/core-elisp-tests.el index 809be10bc02..bb76ee25c77 100644 --- a/test/automated/core-elisp-tests.el +++ b/test/automated/core-elisp-tests.el @@ -31,7 +31,9 @@ ;; is properly initialized. (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 2) c-e-x) c-e-x) + (should (equal (list (let ((c-e-x 1)) + (defcustom c-e-x "doc" 2 :group 'blah) c-e-x) + c-e-x) '(1 2))))) (provide 'core-elisp-tests) |