From e00469f654a0a3e3b5e5262ccaf49c83fdce3b04 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Wed, 10 May 2023 12:10:44 +0200 Subject: [PATCH] Disable php-mode-lineup-cascaded-calls for PEAR style Resolves: https://github.com/emacs-php/php-mode/issues/745 --- 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 c3859614..f0cd36ce 100644 --- a/lisp/php-mode.el +++ b/lisp/php-mode.el @@ -714,7 +714,8 @@ a backward search limit." '("php" (c-basic-offset . 4) (c-offsets-alist . ((case-label . 0))) - (tab-width . 4))) + (tab-width . 4) + (php-mode-lineup-cascaded-calls . nil))) (defun php-enable-pear-coding-style () "Set up `php-mode' to use the coding styles preferred for PEAR code and modules."