Skip to content

Commit a25fa8a

Browse files
committed
Removes hardcoding of implicit paths in php that are not guaranteed to exist
1 parent 462b622 commit a25fa8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lisp/php.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
:link '(url-link :tag "Official Site" "https://github.com/emacs-php/php-mode")
5050
:link '(url-link :tag "PHP Mode Wiki" "https://github.com/emacs-php/php-mode/wiki"))
5151

52-
(defcustom php-executable (or (executable-find "php") "/usr/bin/php")
52+
(defcustom php-executable (or (executable-find "php") "php")
5353
"The location of the PHP executable."
5454
:group 'php
5555
:tag "PHP Executable"

0 commit comments

Comments
 (0)