|
61 | 61 | :group 'php-faces |
62 | 62 | :tag "PHP Function Call Standard") |
63 | 63 |
|
64 | | -(defface php-function-call '((t ())) |
| 64 | +(defface php-function-call-traditional '((t ())) |
65 | 65 | "PHP Mode face used to highlight function names in calles." |
66 | 66 | :group 'php-faces |
67 | | - :tag "PHP Function Call") |
| 67 | + :tag "PHP Function Call Traditional") |
68 | 68 |
|
69 | | -(defface php-method-call '((t (:inherit php-function-call))) |
| 69 | +(define-obsolete-face-alias 'php-function-call 'php-function-call-traditional "1.26.0") |
| 70 | + |
| 71 | +(defface php-method-call-standard '((t (:inherit php-function-call-standard))) |
70 | 72 | "PHP Mode face used to highlight method names in calles." |
71 | 73 | :group 'php-faces |
72 | | - :tag "PHP Method Call") |
| 74 | + :tag "PHP Method Call Standard") |
| 75 | + |
| 76 | +(defface php-method-call-traditional '((t (:inherit php-function-call-traditional))) |
| 77 | + "PHP Mode face used to highlight method names in calles." |
| 78 | + :group 'php-faces |
| 79 | + :tag "PHP Method Call Traditional") |
| 80 | + |
| 81 | +(define-obsolete-face-alias 'php-method-call 'php-method-call-traditional "1.26.0") |
73 | 82 |
|
74 | | -(defface php-static-method-call '((t (:inherit php-method-call))) |
| 83 | +(defface php-static-method-call-standard '((t (:inherit php-method-call-standard))) |
75 | 84 | "PHP Mode face used to highlight static method names in calles." |
76 | 85 | :group 'php-faces |
77 | | - :tag "PHP Static Method Call") |
| 86 | + :tag "PHP Static Method Call Standard") |
| 87 | + |
| 88 | +(defface php-static-method-call-traditional '((t (:inherit php-method-call-traditional))) |
| 89 | + "PHP Mode face used to highlight static method names in calles." |
| 90 | + :group 'php-faces |
| 91 | + :tag "PHP Static Method Call Traditional") |
| 92 | + |
| 93 | +(define-obsolete-face-alias 'php-static-method-call 'php-static-method-call-traditional "1.26.0") |
78 | 94 |
|
79 | 95 | (defface php-variable-name '((t (:inherit font-lock-variable-name-face))) |
80 | 96 | "PHP Mode face used to highlight variable names." |
|
0 commit comments