branch: elpa/php-mode
commit c143ab3d64d69b3196d980176bfac768be6930da
Author: USAMI Kenta <[email protected]>
Commit: USAMI Kenta <[email protected]>

    Use delq instead of cl-remove-if
---
 lisp/php.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/php.el b/lisp/php.el
index 538d9ac00f..94862cc617 100644
--- a/lisp/php.el
+++ b/lisp/php.el
@@ -602,8 +602,8 @@ When `DOCUMENT-ROOT' is NIL, the document root is obtained 
from `ROUTER-OR-DIR'.
                            port
                            short-dirname
                            (if document-root short-filename "")))
-         (args (cl-remove-if
-                #'null
+         (args (delq
+                nil
                 (list "-S"
                       (format "%s:%d" hostname port)
                       "-t"

Reply via email to