File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 15
15
(defconst php-mode-version-number " 1.19.0"
16
16
" PHP Mode version number." )
17
17
18
- (defconst php-mode-modified " 2018-03-24 "
18
+ (defconst php-mode-modified " 2018-03-26 "
19
19
" PHP Mode build date." )
20
20
21
21
; ; This file is free software; you can redistribute it and/or
@@ -1164,6 +1164,7 @@ After setting the stylevars run hooks according to STYLENAME
1164
1164
(defun php-mode-debug ()
1165
1165
" Display informations useful for debugging PHP Mode."
1166
1166
(interactive )
1167
+ (require 'cus-edit )
1167
1168
(message " --- PHP-MODE DEBUG BEGIN --- " )
1168
1169
(message " versions: %s ; %s " (emacs-version ) (php-mode-version))
1169
1170
(message " major-mode: %s " major-mode)
@@ -1180,7 +1181,9 @@ After setting the stylevars run hooks according to STYLENAME
1180
1181
if (eq type 'custom-variable )
1181
1182
collect (list v (symbol-value v))))
1182
1183
(message " c-indentation-style: %s " c-indentation-style)
1183
- (message " c-style-variables: %s " (c-get-style-variables c-indentation-style nil ))
1184
+ (message " c-style-variables: %s "
1185
+ (cl-loop for v in c-style-variables
1186
+ collect (list v (symbol-value v))))
1184
1187
(message " --- PHP-MODE DEBUG END --- " )
1185
1188
(switch-to-buffer " *Messages*" )
1186
1189
(goto-char (point-max )))
You can’t perform that action at this time.
0 commit comments