File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this
27
27
* Make ` php-mode-version ` function include a Git tag and revision ([ #713 ] )
28
28
* Like ` "1.23.4-56-xxxxxx" ` for example.
29
29
* Change ` php-phpdoc-type-keywords ` to ` php-phpdoc-type-names ` to avoid confusion ([ #717 ] )
30
+ * Make ` php-flymake-php-init ` append to ` flymake-allowed-file-name-masks ` only in legacy Flymake ([ #718 ] )
30
31
31
32
### Deprecated
32
33
Original file line number Diff line number Diff line change @@ -1542,12 +1542,10 @@ for \\[find-tag] (which see)."
1542
1542
(defvar php-font-lock-keywords php-font-lock-keywords-3
1543
1543
" Default expressions to highlight in PHP Mode." )
1544
1544
1545
- (add-to-list
1546
- (eval-when-compile
1547
- (if (boundp 'flymake-proc-allowed-file-name-masks )
1548
- 'flymake-proc-allowed-file-name-masks
1549
- 'flymake-allowed-file-name-masks ))
1550
- '(" \\ .php[345s]?\\ '" php-flymake-php-init))
1545
+ (eval-when-compile
1546
+ (unless (boundp 'flymake-proc-allowed-file-name-masks )
1547
+ (add-to-list 'flymake-allowed-file-name-masks
1548
+ '(" \\ .php[345s]?\\ '" php-flymake-php-init))))
1551
1549
1552
1550
1553
1551
(defun php-send-region (start end )
You can’t perform that action at this time.
0 commit comments