We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d769da0 commit ad41523Copy full SHA for ad41523
php-mode.el
@@ -170,15 +170,15 @@ Turning this on will open it whenever `php-mode' is loaded."
170
(defsubst php-in-string-or-comment-p ()
171
(nth 8 (syntax-ppss)))
172
173
-(defun php-mode-extra-constants-create-regexp(kwds)
+(defun php-mode-extra-constants-create-regexp (kwds)
174
"Create regexp for the list of extra constant keywords KWDS."
175
(concat "[^_$]?\\<\\("
176
(regexp-opt
177
(append kwds
178
(when (boundp 'web-mode-extra-php-constants) web-mode-extra-php-constants)))
179
"\\)\\>[^_]?"))
180
181
-(defun php-mode-extra-constants-set(sym value)
+(defun php-mode-extra-constants-set (sym value)
182
"Apply the list of extra constant keywords `VALUE'.
183
184
This function is called when the custom variable php-extra-constants
0 commit comments