|
31 | 31 | (require 'php-mode)
|
32 | 32 | (require 'package)
|
33 | 33 | (require 'pkg-info nil t)
|
| 34 | +(require 'el-get nil t) |
34 | 35 |
|
35 | 36 | (declare-function pkg-info-version-info "pkg-info" (library &optional package show))
|
36 | 37 |
|
| 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 | + |
37 | 80 | (defun php-mode-debug--buffer (&optional command &rest args)
|
38 | 81 | "Return buffer for php-mode-debug, and execute `COMMAND' with `ARGS'."
|
39 | 82 | (with-current-buffer (get-buffer-create "*PHP Mode DEBUG*")
|
|
0 commit comments