[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/phps-mode 8e92fccb49 2/9: Using PHP 8.3 grammar for par
From: |
Christian Johansson |
Subject: |
[elpa] externals/phps-mode 8e92fccb49 2/9: Using PHP 8.3 grammar for parser generation |
Date: |
Mon, 15 Jan 2024 08:24:59 -0500 (EST) |
branch: externals/phps-mode
commit 8e92fccb495cf513663c5bdb7d6c7c279292398d
Author: Christian Johansson <christian@cvj.se>
Commit: Christian Johansson <christian@cvj.se>
Using PHP 8.3 grammar for parser generation
---
phps-mode-automation-parser-generator.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/phps-mode-automation-parser-generator.el
b/phps-mode-automation-parser-generator.el
index 82b5ebf916..1680d8d452 100644
--- a/phps-mode-automation-parser-generator.el
+++ b/phps-mode-automation-parser-generator.el
@@ -56,18 +56,18 @@
(defun phps-mode-automation-parser-generator--ensure-yacc-grammar-is-available
()
"If grammar is not available, download it."
(let ((php-yacc-url
-
"https://raw.githubusercontent.com/php/php-src/PHP-8.2/Zend/zend_language_parser.y")
+
"https://raw.githubusercontent.com/php/php-src/PHP-8.3/Zend/zend_language_parser.y")
(php-yacc-file
(expand-file-name "zend_language_parser.y")))
;; Download YACC if not available (seems to now work in batch mode for
some reason)
(unless (file-exists-p php-yacc-file)
(message
- ";; Downloading PHP 8.2 YACC grammar.. since %S does not exists"
php-yacc-file)
+ ";; Downloading PHP 8.3 YACC grammar.. since %S does not exists"
php-yacc-file)
(with-current-buffer (url-retrieve-synchronously php-yacc-url)
(write-file php-yacc-file))
(message
- ";; Download of PHP 8.2 YACC grammar completed"))
+ ";; Download of PHP 8.3 YACC grammar completed"))
(unless (file-exists-p php-yacc-file)
(error "Missing PHP YACC grammar at %s!" php-yacc-file))))
- [elpa] externals/phps-mode updated (378f886bdb -> 70559d0374), Christian Johansson, 2024/01/15
- [elpa] externals/phps-mode 9d5a82910a 1/9: Garbage collection fix for parser generation, Christian Johansson, 2024/01/15
- [elpa] externals/phps-mode c6e4deec40 4/9: Improved indentation for chained expressions, Christian Johansson, 2024/01/15
- [elpa] externals/phps-mode ba5e20dcc6 7/9: Fixed more byte-compilation notices, Christian Johansson, 2024/01/15
- [elpa] externals/phps-mode 9e9f4f9fb2 8/9: Updated copyright years, Christian Johansson, 2024/01/15
- [elpa] externals/phps-mode 70559d0374 9/9: Updated modified date and version, Christian Johansson, 2024/01/15
- [elpa] externals/phps-mode 8e92fccb49 2/9: Using PHP 8.3 grammar for parser generation,
Christian Johansson <=
- [elpa] externals/phps-mode 738adb2eca 3/9: Work on indentation errors Emacs 29.1, Christian Johansson, 2024/01/15
- [elpa] externals/phps-mode 52556fd141 5/9: Fixes for byte-compilation notices, Christian Johansson, 2024/01/15
- [elpa] externals/phps-mode 616fd806df 6/9: Updated version of parser generator library, Christian Johansson, 2024/01/15