diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2019-01-10 13:27:34 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2019-01-10 13:27:34 +0100 |
commit | 7ae0a24c87c2bbefe78717d5e89cf3fe14f4af4c (patch) | |
tree | e1671ab5f2abf7c6ef30ce5361cfbef44fb2230e /test/lisp/custom-resources | |
parent | f646675cd1637948b2df2351a9666792ea8251ea (diff) | |
download | emacs-7ae0a24c87c2bbefe78717d5e89cf3fe14f4af4c.tar.gz emacs-7ae0a24c87c2bbefe78717d5e89cf3fe14f4af4c.tar.bz2 emacs-7ae0a24c87c2bbefe78717d5e89cf3fe14f4af4c.zip |
New test custom--test-theme-variables
* 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.
Diffstat (limited to 'test/lisp/custom-resources')
-rw-r--r-- | test/lisp/custom-resources/custom--test-theme.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/lisp/custom-resources/custom--test-theme.el b/test/lisp/custom-resources/custom--test-theme.el new file mode 100644 index 00000000000..da9121e0a0a --- /dev/null +++ b/test/lisp/custom-resources/custom--test-theme.el @@ -0,0 +1,9 @@ +(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) |