emacs-diffs
[Top][All Lists]
Advanced

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

master 9759fb5: Add missing :version tags to new faces


From: Eli Zaretskii
Subject: master 9759fb5: Add missing :version tags to new faces
Date: Wed, 25 Aug 2021 08:30:36 -0400 (EDT)

branch: master
commit 9759fb596b634db2faf7edcd4fd557a11abe9903
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Add missing :version tags to new faces
    
    * lisp/term.el (term-color-bright-black, term-color-bright-red)
    (term-color-bright-green, term-color-bright-yellow)
    (term-color-bright-blue, term-color-bright-magenta)
    (term-color-bright-cyan, term-color-bright-white): Add :version.
---
 lisp/term.el | 24 ++++++++++++++++--------
 1 file changed, 16 insertions(+), 8 deletions(-)

diff --git a/lisp/term.el b/lisp/term.el
index ef25321..c4e6c52 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -812,42 +812,50 @@ Buffer local variable.")
 (defface term-color-bright-black
   '((t :foreground "gray30" :background "gray30"))
   "Face used to render bright black color code."
-  :group 'term)
+  :group 'term
+  :version "28.1")
 
 (defface term-color-bright-red
   '((t :foreground "red2" :background "red2"))
   "Face used to render bright red color code."
-  :group 'term)
+  :group 'term
+  :version "28.1")
 
 (defface term-color-bright-green
   '((t :foreground "green2" :background "green2"))
   "Face used to render bright green color code."
-  :group 'term)
+  :group 'term
+  :version "28.1")
 
 (defface term-color-bright-yellow
   '((t :foreground "yellow2" :background "yellow2"))
   "Face used to render bright yellow color code."
-  :group 'term)
+  :group 'term
+  :version "28.1")
 
 (defface term-color-bright-blue
   '((t :foreground "blue1" :background "blue1"))
   "Face used to render bright blue color code."
-  :group 'term)
+  :group 'term
+  :version "28.1")
 
 (defface term-color-bright-magenta
   '((t :foreground "magenta2" :background "magenta2"))
   "Face used to render bright magenta color code."
-  :group 'term)
+  :group 'term
+  :version "28.1")
 
 (defface term-color-bright-cyan
   '((t :foreground "cyan2" :background "cyan2"))
   "Face used to render bright cyan color code."
-  :group 'term)
+  :group 'term
+  :version "28.1")
 
 (defface term-color-bright-white
   '((t :foreground "white" :background "white"))
   "Face used to render bright white color code."
-  :group 'term)
+  :group 'term
+  :version "28.1")
 
 (defcustom term-buffer-maximum-size 8192
   "The maximum size in lines for term buffers.



reply via email to

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