>From 7b5ef8219408a6efe64ed331cde303dd7101e4fd Mon Sep 17 00:00:00 2001 Message-Id: <7b5ef8219408a6efe64ed331cde303dd7101e4fd.1614158325.git.info@protesilaos.com> From: Protesilaos Stavrou Date: Wed, 24 Feb 2021 11:18:38 +0200 Subject: [PATCH] Specify the Emacs version of new vc-dir faces * vc-dir.el (vc-dir-header): (vc-dir-header-value): (vc-dir-directory): (vc-dir-file): (vc-dir-mark-indicator): (vc-dir-status-warning): (vc-dir-status-edited): (vc-dir-status-up-to-date): (vc-dir-status-ignored): Add version 28.1. --- lisp/vc/vc-dir.el | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/lisp/vc/vc-dir.el b/lisp/vc/vc-dir.el index a416474e16..46fbf44861 100644 --- a/lisp/vc/vc-dir.el +++ b/lisp/vc/vc-dir.el @@ -56,39 +56,48 @@ vc-dir-mode-hook (defface vc-dir-header '((t :inherit font-lock-type-face)) "Face for headers in VC-dir buffers." - :group 'vc) + :group 'vc + :version "28.1") (defface vc-dir-header-value '((t :inherit font-lock-variable-name-face)) "Face for header values in VC-dir buffers." - :group 'vc) + :group 'vc + :version "28.1") (defface vc-dir-directory '((t :inherit font-lock-comment-delimiter-face)) "Face for directories in VC-dir buffers." - :group 'vc) + :group 'vc + :version "28.1") (defface vc-dir-file '((t :inherit font-lock-function-name-face)) "Face for files in VC-dir buffers." - :group 'vc) + :group 'vc + :version "28.1") (defface vc-dir-mark-indicator '((t :inherit font-lock-type-face)) "Face for mark indicators in VC-dir buffers." - :group 'vc) + :group 'vc + :version "28.1") (defface vc-dir-status-warning '((t :inherit font-lock-warning-face)) "Face for warning status in VC-dir buffers." - :group 'vc) + :group 'vc + :version "28.1") (defface vc-dir-status-edited '((t :inherit font-lock-variable-name-face)) "Face for edited status in VC-dir buffers." - :group 'vc) + :group 'vc + :version "28.1") (defface vc-dir-status-up-to-date '((t :inherit font-lock-builtin-face)) "Face for up-to-date status in VC-dir buffers." - :group 'vc) + :group 'vc + :version "28.1") (defface vc-dir-status-ignored '((t :inherit shadow)) "Face for ignored or empty values in VC-dir buffers." - :group 'vc) + :group 'vc + :version "28.1") ;; Used to store information for the files displayed in the directory buffer. ;; Each item displayed corresponds to one of these defstructs. -- 2.30.1