branch: elpa/diff-ansi
commit 2d6acff4275455f7d3b5361e14de8bab8c28e3bb
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>
Fix: specify custom group for defface
Without specifying the group explicitly,
this face won't appear in any custom group.
---
diff-ansi.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/diff-ansi.el b/diff-ansi.el
index 62648b66f19..b33fe372f37 100644
--- a/diff-ansi.el
+++ b/diff-ansi.el
@@ -62,7 +62,8 @@
;; Note that this has it's values extracted and isn't used directly.
(defface diff-ansi-default-face (list (list t :foreground "black" :background
"black"))
- "Face used to render black color.")
+ "Face used to render black color."
+ :group 'diff-ansi)
(defcustom diff-ansi-tool-custom nil
"Command to use when `diff-ansi-tool' is set to `custom'.