Skip to content

Commit 095b707

Browse files
authored
Merge pull request #597 from emacs-php/remove/face-inherit-default
Remove `:inherit default` from faces
2 parents 9f23619 + ed25874 commit 095b707

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

php-face.el

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
:group 'php-faces
5757
:tag "PHP Function Name")
5858

59-
(defface php-function-call '((t (:inherit default)))
59+
(defface php-function-call '((t ()))
6060
"PHP Mode face used to highlight function names in calles."
6161
:group 'php-faces
6262
:tag "PHP Function Call")
@@ -81,12 +81,12 @@
8181
:group 'php-faces
8282
:tag "PHP Property Name")
8383

84-
(defface php-variable-sigil '((t (:inherit default)))
84+
(defface php-variable-sigil '((t ()))
8585
"PHP Mode face used to highlight variable sigils ($)."
8686
:group 'php-faces
8787
:tag "PHP Variable Sigil")
8888

89-
(defface php-operator '((t (:inherit default)))
89+
(defface php-operator '((t ()))
9090
"PHP Mode face used to operators."
9191
:group 'php-faces
9292
:tag "PHP Operator")
@@ -126,7 +126,7 @@
126126
:group 'php-faces
127127
:tag "PHP Object Op")
128128

129-
(defface php-paamayim-nekudotayim '((t (:inherit default)))
129+
(defface php-paamayim-nekudotayim '((t ()))
130130
"PHP Mode face used to highlight \"Paamayim Nekudotayim\" scope resolution operators (::)."
131131
:group 'php-faces
132132
:tag "PHP Paamayim Nekudotayim")

0 commit comments

Comments
 (0)