diff options
author | Case Duckworth | 2021-09-04 23:52:09 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-04 23:52:09 -0500 |
commit | 0c983530e4a693764e5e52326f62f6475489cd8e (patch) | |
tree | db4bb433cab20671655ad428d9d4bf4817f31078 /lisp | |
parent | Add ';' as link-cmd map in acdw/reading-mode (diff) | |
download | emacs-0c983530e4a693764e5e52326f62f6475489cd8e.tar.gz emacs-0c983530e4a693764e5e52326f62f6475489cd8e.zip |
Add :face
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/acdw-setup.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/acdw-setup.el b/lisp/acdw-setup.el index ca30249..aa5c5f5 100644 --- a/lisp/acdw-setup.el +++ b/lisp/acdw-setup.el | |||
@@ -30,6 +30,12 @@ | |||
30 | :type - Either `nil', `keymap', or `macro': see `autoload' for details." | 30 | :type - Either `nil', `keymap', or `macro': see `autoload' for details." |
31 | :repeatable t) | 31 | :repeatable t) |
32 | 32 | ||
33 | (setup-define :face | ||
34 | (lambda (face spec) | ||
35 | `(custom-set-faces '(,face ,spec 'now "Customized by `setup'."))) | ||
36 | :documentation "Customize FACE with SPEC using `custom-set-faces'." | ||
37 | :repeatable t) | ||
38 | |||
33 | (setup-define :file-match | 39 | (setup-define :file-match |
34 | ;; Hotfix; patch here: https://github.com/phikal/setup.el/pull/1 | 40 | ;; Hotfix; patch here: https://github.com/phikal/setup.el/pull/1 |
35 | (lambda (pat) | 41 | (lambda (pat) |