branch: externals/phps-mode commit 2a296e094790c2074fd1ace0e448d382bd76dba5 Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
Updated output in parser generator automation --- phps-mode-automation-parser-generator.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phps-mode-automation-parser-generator.el b/phps-mode-automation-parser-generator.el index c665d1b902..82b5ebf916 100644 --- a/phps-mode-automation-parser-generator.el +++ b/phps-mode-automation-parser-generator.el @@ -63,11 +63,11 @@ ;; 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.1 YACC grammar.. since %S does not exists" php-yacc-file) + ";; Downloading PHP 8.2 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.1 YACC grammar completed")) + ";; Download of PHP 8.2 YACC grammar completed")) (unless (file-exists-p php-yacc-file) (error "Missing PHP YACC grammar at %s!" php-yacc-file))))