branch: elpa/git-commit commit a66b86d51139479d74962cc077c5215d20dd72e6 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Define empty face definitions without making them rogue --- lisp/git-rebase.el | 2 +- lisp/magit-blame.el | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lisp/git-rebase.el b/lisp/git-rebase.el index 4908908..a5fe9b7 100644 --- a/lisp/git-rebase.el +++ b/lisp/git-rebase.el @@ -120,7 +120,7 @@ "Face for labels in label, merge, and reset lines." :group 'git-rebase-faces) -(defface git-rebase-description nil +(defface git-rebase-description '((t nil)) "Face for commit descriptions." :group 'git-rebase-faces) diff --git a/lisp/magit-blame.el b/lisp/magit-blame.el index ecb0ce8..9c72fab 100644 --- a/lisp/magit-blame.el +++ b/lisp/magit-blame.el @@ -197,19 +197,19 @@ Also see option `magit-blame-styles'." Also see option `magit-blame-styles'." :group 'magit-faces) -(defface magit-blame-summary nil +(defface magit-blame-summary '((t nil)) "Face used for commit summaries when blaming." :group 'magit-faces) -(defface magit-blame-hash nil +(defface magit-blame-hash '((t nil)) "Face used for commit hashes when blaming." :group 'magit-faces) -(defface magit-blame-name nil +(defface magit-blame-name '((t nil)) "Face used for author and committer names when blaming." :group 'magit-faces) -(defface magit-blame-date nil +(defface magit-blame-date '((t nil)) "Face used for dates when blaming." :group 'magit-faces)