update of packages

This commit is contained in:
2023-11-04 19:26:41 +01:00
parent e162a12b58
commit 3b54a3236d
726 changed files with 297673 additions and 34585 deletions

View File

@@ -1,10 +1,10 @@
;;; php-face.el --- Face definitions for PHP script -*- lexical-binding: t; -*-
;; Copyright (C) 2022 Friends of Emacs-PHP development
;; Copyright (C) 2023 Friends of Emacs-PHP development
;; Author: USAMI Kenta <tadsan@zonu.me>
;; Created: 5 May 2019
;; Version: 1.24.2
;; Version: 1.25.0
;; Keywords: faces, php
;; Homepage: https://github.com/emacs-php/php-mode
;; License: GPL-3.0-or-later
@@ -126,7 +126,8 @@
:tag "PHP Object Op")
(defface php-paamayim-nekudotayim '((t ()))
"PHP Mode face used to highlight \"Paamayim Nekudotayim\" scope resolution operators (::)."
"PHP Mode face used to highlight scope resolution operators (::).
The operator is also knows as \"Paamayim Nekudotayim\"."
:group 'php-faces
:tag "PHP Paamayim Nekudotayim")
@@ -145,7 +146,7 @@
:group 'php-faces
:tag "PHP Constant")
(defface php-constant-assign '((t (:inherit font-lock-type-face)))
(defface php-constant-assign '((t (:inherit php-constant)))
"PHP Mode face used to highlight constant assigning (\"const\" statement)."
:group 'php-faces
:tag "PHP Constant Assign")
@@ -209,7 +210,8 @@
:tag "PHP Class Declaration")
(defface php-class-declaration-spec '((t (:inherit php-keyword)))
"PHP Mode Face used to highlight class declaration specification keywords (implements, extends)."
"PHP Mode Face used to highlight class declaration specification keywords.
The keywords include: implements, extends."
:group 'php-faces
:tag "PHP Class Declaration Specification")
@@ -239,7 +241,8 @@
:tag "PHP Visibility Modifier")
(defface php-control-structure '((t (:inherit php-keyword)))
"PHP Mode Face used to highlight control structures (if, foreach, while, switch, catch...)."
"PHP Mode Face used to highlight control structures.
The control structures include: if, foreach, while, switch, catch."
:group 'php-faces
:tag "PHP Control Structure")