branch: elpa/php-mode commit 51670f33644afca890338e4fd32cb9a00a4c5a77 Author: USAMI Kenta <tad...@zonu.me> Commit: USAMI Kenta <tad...@zonu.me>
Add "=>" to php-mode token as pseudo-operator --- lisp/php-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/php-mode.el b/lisp/php-mode.el index aef3f3c806..241e2c9697 100644 --- a/lisp/php-mode.el +++ b/lisp/php-mode.el @@ -411,7 +411,8 @@ In that case set to `NIL'." (left-assoc "and") (left-assoc "xor") (left-assoc "or") - (left-assoc ","))) + (left-assoc ",") + (left-assoc "=>"))) ;; Allow '\' when scanning from open brace back to defining ;; construct like class