We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0902894 commit 330070dCopy full SHA for 330070d
lisp/php.el
@@ -550,11 +550,9 @@ The order is reversed by calling as follows:
550
551
This is an alternative function of `flymake-php-init'.
552
Look at the `php-executable' variable instead of the constant \"php\" command."
553
- (let* ((init (funcall (eval-when-compile
554
- (if (fboundp 'flymake-proc-php-init)
555
- 'flymake-proc-php-init
556
- 'flymake-php-init)))))
557
- (list php-executable (cdr init))))
+ (let ((init (with-no-warnings (flymake-php-init))))
+ (setf (car init) php-executable)
+ init))
558
559
(defconst php-re-detect-html-tag-aggressive
560
(eval-when-compile
0 commit comments