emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/git-commit c7fb546 1/3: git-commit: Use preferred form in


From: ELPA Syncer
Subject: [nongnu] elpa/git-commit c7fb546 1/3: git-commit: Use preferred form in face specs
Date: Sat, 20 Nov 2021 16:57:34 -0500 (EST)

branch: elpa/git-commit
commit c7fb546c4d4fe5610f701d6c4d51d8b2fcc7becc
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    git-commit: Use preferred form in face specs
    
    Use (DISPLAY . PLIST); (DISPLAY PLIST) is
    only supported for backward compatibility.
---
 lisp/git-rebase.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lisp/git-rebase.el b/lisp/git-rebase.el
index 8ffe5ee..cb1e82d 100644
--- a/lisp/git-rebase.el
+++ b/lisp/git-rebase.el
@@ -112,11 +112,11 @@
   :group 'faces
   :group 'git-rebase)
 
-(defface git-rebase-hash '((t (:inherit magit-hash)))
+(defface git-rebase-hash '((t :inherit magit-hash))
   "Face for commit hashes."
   :group 'git-rebase-faces)
 
-(defface git-rebase-label '((t (:inherit magit-refname)))
+(defface git-rebase-label '((t :inherit magit-refname))
   "Face for labels in label, merge, and reset lines."
   :group 'git-rebase-faces)
 
@@ -125,12 +125,12 @@
   :group 'git-rebase-faces)
 
 (defface git-rebase-killed-action
-  '((t (:inherit font-lock-comment-face :strike-through t)))
+  '((t :inherit font-lock-comment-face :strike-through t))
   "Face for commented commit action lines."
   :group 'git-rebase-faces)
 
 (defface git-rebase-comment-hash
-  '((t (:inherit git-rebase-hash :weight bold)))
+  '((t :inherit git-rebase-hash :weight bold))
   "Face for commit hashes in commit message comments."
   :group 'git-rebase-faces)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]