mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-18 18:00:11 +00:00

* test/lisp/custom-tests.el (custom--test-user-option) (custom--test-variable): New variables. (custom--test-theme-variables): New test. * test/lisp/custom-resources/custom--test-theme.el (custom--test): New file.
9 lines
183 B
EmacsLisp
9 lines
183 B
EmacsLisp
(deftheme custom--test
|
|
"A test theme.")
|
|
|
|
(custom-theme-set-variables
|
|
'custom--test
|
|
'(custom--test-user-option 'bar)
|
|
'(custom--test-variable 'bar))
|
|
|
|
(provide-theme 'custom--test)
|