From efbc5f90cb9d649df03acb5769e734d71438742d Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Wed, 15 Apr 2020 22:42:34 +0900 Subject: [PATCH] Add php-mode-disable-c-auto-align-backslashes for disable line continuation refs https://github.com/emacs-php/php-mode/issues/620 --- php-mode.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/php-mode.el b/php-mode.el index 0d756813..8d220d25 100644 --- a/php-mode.el +++ b/php-mode.el @@ -298,6 +298,12 @@ In that case set to `NIL'." :tag "PHP Mode Enable Backup Style Variables" :type 'boolean) +(defcustom php-mode-disable-c-auto-align-backslashes t + "When set to non-NIL, override `c-auto-align-backslashes' to NIL." + :group 'php-mode + :tag "PHP Mode Disable c-auto-align-backslashes" + :type 'boolean) + (define-obsolete-variable-alias 'php-mode-disable-parent-mode-hooks 'php-mode-disable-c-mode-hook "1.21.0") (defcustom php-mode-disable-c-mode-hook t "When set to `T', do not run hooks of parent modes (`java-mode', `c-mode')." @@ -855,6 +861,9 @@ reported, even if `c-report-syntactic-errors' is non-nil." php-warned-bad-indent (php-check-html-for-indentation)) (let ((here (point)) + (c-auto-align-backslashes + (unless php-mode-disable-c-auto-align-backslashes + c-auto-align-backslashes)) doit) (move-beginning-of-line nil) ;; Don't indent heredoc end mark