Skip to content

Commit 4eb01e0

Browse files
committed
Add php-mode-debug-reinstall
1 parent bbed922 commit 4eb01e0

File tree

3 files changed

+53
-4
lines changed

3 files changed

+53
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this
1818
* Psalm: [Supported Annotations](https://psalm.dev/docs/annotating_code/supported_annotations/)
1919
* Psalm: [Template Annotations](https://psalm.dev/docs/annotating_code/templated_annotations/)
2020
* Add `php-mode-replace-flymake-diag-function` custom variable and default activated it ([#718])
21+
* Add `php-mode-debug-reinstall` command to help users who update Emacs themselves ([#721])
2122

2223
### Changed
2324

@@ -55,6 +56,7 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this
5556
[#717]: https://github.com/emacs-php/php-mode/pull/717
5657
[#718]: https://github.com/emacs-php/php-mode/pull/718
5758
[#719]: https://github.com/emacs-php/php-mode/pull/719
59+
[#721]: https://github.com/emacs-php/php-mode/pull/721
5860

5961
## [1.24.1] - 2022-10-08
6062

lisp/php-mode-debug.el

+43
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,52 @@
3131
(require 'php-mode)
3232
(require 'package)
3333
(require 'pkg-info nil t)
34+
(require 'el-get nil t)
3435

3536
(declare-function pkg-info-version-info "pkg-info" (library &optional package show))
3637

38+
(defun php-mode-debug-reinstall (force &optional called-interactive)
39+
"Reinstall PHP Mode to solve Cc Mode version mismatch.
40+
41+
When FORCE, try to reinstall without interactively asking.
42+
When CALLED-INTERACTIVE then message the result."
43+
(interactive (list (yes-or-no-p (if (string= php-mode-cc-version c-version)
44+
"No need to recompile, but force PHP Mode to reinstall? "
45+
"Force reinstall PHP Mode? "))
46+
t))
47+
(let* ((cc-version-mismatched (string= php-mode-cc-version c-version))
48+
(preface (if cc-version-mismatched
49+
""
50+
"CC Mode has been updated. ")))
51+
(if (catch 'success
52+
(cond
53+
((and (not called-interactive)
54+
(not force)
55+
cc-version-mismatched)
56+
nil)
57+
((and (package-installed-p 'php-mode)
58+
(or force
59+
(yes-or-no-p (format "%sReinstall `php-mode' package? " preface))))
60+
(package-reinstall 'php-mode)
61+
(throw 'success t))
62+
;; This clause is not included in the byte-compiled code when compiled without El-Get
63+
((and (eval-when-compile (and (fboundp 'el-get-package-is-installed)
64+
(fboundp 'el-get-reinstall)))
65+
(el-get-package-is-installed 'php-mode)
66+
(or force
67+
(yes-or-no-p (format "%sReinstall `php-mode' package by El-Get? " preface))))
68+
(el-get-reinstall 'php-mode)
69+
(throw 'success t))
70+
((not called-interactive)
71+
(user-error
72+
(if cc-version-mismatched
73+
"PHP Mode cannot be reinstalled automatically. Please try manually if necessary"
74+
"Please reinstall or byte recompile PHP Mode files manually")))))
75+
(user-error "PHP Mode reinstalled successfully. Please restart Emacs")
76+
(prog1 t
77+
(when called-interactive
78+
(message "PHP Mode was not reinstalled"))))))
79+
3780
(defun php-mode-debug--buffer (&optional command &rest args)
3881
"Return buffer for php-mode-debug, and execute `COMMAND' with `ARGS'."
3982
(with-current-buffer (get-buffer-create "*PHP Mode DEBUG*")

lisp/php-mode.el

+8-4
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,13 @@ The format is follows:
115115

116116
(autoload 'php-mode-debug "php-mode-debug"
117117
"Display informations useful for debugging PHP Mode." t)
118+
119+
(autoload 'php-mode-debug-reinstall "php-mode-debug"
120+
"Reinstall PHP Mode to solve Cc Mode version mismatch.
121+
122+
When FORCE, try to reinstall without interactively asking.
123+
When CALLED-INTERACTIVE then message the result." t)
124+
118125

119126
;; Local variables
120127

@@ -1181,10 +1188,7 @@ After setting the stylevars run hooks according to STYLENAME
11811188
;; (setq abbrev-mode t)
11821189

11831190
(unless (string= php-mode-cc-vertion c-version)
1184-
(user-error "CC Mode has been updated. %s"
1185-
(if (package-installed-p 'php-mode)
1186-
"Please run `M-x package-reinstall php-mode' command."
1187-
"Please byte recompile PHP Mode files.")))
1191+
(php-mode-debug-reinstall))
11881192

11891193
(if php-mode-disable-c-mode-hook
11901194
(php-mode-neutralize-cc-mode-effect)

0 commit comments

Comments
 (0)