mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-08 15:35:02 +00:00
* test/automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
This commit is contained in:
parent
f3ffcd8c96
commit
1f21d30894
@ -1,5 +1,7 @@
|
||||
2013-08-03 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
|
||||
|
||||
* automated/icalendar-tests.el (icalendar-tests--test-export)
|
||||
(icalendar-tests--test-import):
|
||||
Use getenv/setenv rather than set-time-zone-rule.
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user