Skip to content

Commit 5e799da

Browse files
committed
Add php-mode-cc-version to php-mode-debug
1 parent 851225b commit 5e799da

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lisp/php-mode-debug.el

+6-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,12 @@ When CALLED-INTERACTIVE then message the result."
105105
(php-mode-debug--message "Pasting the following information on the issue will help us to investigate the cause.")
106106
(php-mode-debug--message "```")
107107
(php-mode-debug--message "--- PHP-MODE DEBUG BEGIN ---")
108-
(php-mode-debug--message "versions: %s; %s; Cc Mode %s)" (emacs-version) (php-mode-version) c-version)
108+
(php-mode-debug--message "versions: %s; %s; Cc Mode %s)"
109+
(emacs-version)
110+
(php-mode-version)
111+
(if (string= php-mode-cc-version c-version)
112+
c-version
113+
(format "%s (php-mode-cc-version: %s *mismatched*)" c-version php-mode-cc-version)))
109114
(php-mode-debug--message "package-version: %s"
110115
(if (fboundp 'pkg-info)
111116
(pkg-info-version-info 'php-mode)

0 commit comments

Comments
 (0)