diff options
author | John Wiegley <johnw@newartisans.com> | 2019-05-29 13:40:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-29 13:40:03 -0700 |
commit | 97f0287e1968d3ccd802fe52a4dbca707babd7fa (patch) | |
tree | 51da22a54f131769c4c6b9c86e61893d62ce8aa2 /test/lisp/use-package/use-package-tests.el | |
parent | 3e36cbfb6dcd9e9acccc64947321c3cc82f17731 (diff) | |
parent | c297dfdd20be463106376ff3da8677138d099718 (diff) | |
download | emacs-97f0287e1968d3ccd802fe52a4dbca707babd7fa.tar.gz emacs-97f0287e1968d3ccd802fe52a4dbca707babd7fa.tar.bz2 emacs-97f0287e1968d3ccd802fe52a4dbca707babd7fa.zip |
Make custom-face evaluate elisp. ()
Make custom-face evaluate elisp.
GitHub-reference: https://github.com/jwiegley/use-package/issues/773
Diffstat (limited to 'test/lisp/use-package/use-package-tests.el')
-rw-r--r-- | test/lisp/use-package/use-package-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/use-package/use-package-tests.el b/test/lisp/use-package/use-package-tests.el index c4030b04608..3e3e5a72a13 100644 --- a/test/lisp/use-package/use-package-tests.el +++ b/test/lisp/use-package/use-package-tests.el @@ -1125,7 +1125,7 @@ (match-expansion (use-package foo :custom-face (foo ((t (:background "#e4edfc"))))) `(progn - (custom-set-faces '(foo ((t (:background "#e4edfc"))))) + (custom-set-faces (backquote (foo ((t (:background "#e4edfc")))))) (require 'foo nil nil)))) (ert-deftest use-package-test/:init-1 () |