From f4cdd8755f88b15242776ff78839efdc7c1a04cd Mon Sep 17 00:00:00 2001 From: Demis Balbach Date: Thu, 2 Jan 2020 09:26:22 +0100 Subject: [PATCH] rename php modifiers faces; added php-property-acess face --- php-face.el | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/php-face.el b/php-face.el index f4989bb6..6c4c5ead 100644 --- a/php-face.el +++ b/php-face.el @@ -221,16 +221,21 @@ :group 'php-faces :tag "PHP Import Statement") -(defface php-modifiers-class '((t (:inherit php-keyword))) +(defface php-class-modifiers '((t (:inherit php-keyword))) "Face used to highlight class modifiers (final, abstract)" :group 'php-faces :tag "PHP Class Modifiers") -(defface php-modifiers-method '((t (:inherit php-keyword))) +(defface php-method-modifiers '((t (:inherit php-keyword))) "Face used to highlight method modifiers (final, abstract)" :group 'php-faces :tag "PHP Method Modifiers") +(defface php-property-access '((t (:inherit php-keyword))) + "Face used to highlight property access keywords (public, protected, public)" + :group 'php-faces + :tag "PHP Property Access") + (define-obsolete-face-alias 'php-annotations-annotation-face 'php-doc-annotation-tag "1.19.0") (provide 'php-face)