From ed258745d3e35875d9cc957241ebaf578ab71044 Mon Sep 17 00:00:00 2001
From: USAMI Kenta <tadsan@zonu.me>
Date: Sun, 8 Dec 2019 00:13:10 +0900
Subject: [PATCH] Remove `:inherit default` from faces

refs https://github.com/emacs-php/php-mode/issues/595
---
 php-face.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/php-face.el b/php-face.el
index 5bd821e5..5f402573 100644
--- a/php-face.el
+++ b/php-face.el
@@ -56,7 +56,7 @@
   :group 'php-faces
   :tag "PHP Function Name")
 
-(defface php-function-call '((t (:inherit default)))
+(defface php-function-call '((t ()))
   "PHP Mode face used to highlight function names in calles."
   :group 'php-faces
   :tag "PHP Function Call")
@@ -81,12 +81,12 @@
   :group 'php-faces
   :tag "PHP Property Name")
 
-(defface php-variable-sigil '((t (:inherit default)))
+(defface php-variable-sigil '((t ()))
   "PHP Mode face used to highlight variable sigils ($)."
   :group 'php-faces
   :tag "PHP Variable Sigil")
 
-(defface php-operator '((t (:inherit default)))
+(defface php-operator '((t ()))
   "PHP Mode face used to operators."
   :group 'php-faces
   :tag "PHP Operator")
@@ -126,7 +126,7 @@
   :group 'php-faces
   :tag "PHP Object Op")
 
-(defface php-paamayim-nekudotayim '((t (:inherit default)))
+(defface php-paamayim-nekudotayim '((t ()))
   "PHP Mode face used to highlight \"Paamayim Nekudotayim\" scope resolution operators (::)."
   :group 'php-faces
   :tag "PHP Paamayim Nekudotayim")