@@ -300,12 +300,6 @@ In that case set to `NIL'."
300300 :tag " PHP Mode Enable Backup Style Variables"
301301 :type 'boolean )
302302
303- (defcustom php-mode-disable-c-auto-align-backslashes t
304- " When set to non-NIL, override `c-auto-align-backslashes' to NIL."
305- :group 'php-mode
306- :tag " PHP Mode Disable c-auto-align-backslashes"
307- :type 'boolean )
308-
309303(define-obsolete-variable-alias 'php-mode-disable-parent-mode-hooks 'php-mode-disable-c-mode-hook " 1.21.0" )
310304(defcustom php-mode-disable-c-mode-hook t
311305 " When set to `T' , do not run hooks of parent modes (`java-mode' , `c-mode' )."
@@ -916,9 +910,6 @@ reported, even if `c-report-syntactic-errors' is non-nil."
916910 php-warned-bad-indent
917911 (php-check-html-for-indentation))
918912 (let ((here (point ))
919- (c-auto-align-backslashes
920- (unless php-mode-disable-c-auto-align-backslashes
921- c-auto-align-backslashes))
922913 doit)
923914 (move-beginning-of-line nil )
924915 ; ; Don't indent heredoc end mark
@@ -1202,6 +1193,7 @@ After setting the stylevars run hooks according to STYLENAME
12021193 (c-initialize-cc-mode t )
12031194 (c-init-language-vars php-mode)
12041195 (c-common-init 'php-mode )
1196+ (setq-local c-auto-align-backslashes nil )
12051197
12061198 (setq-local comment-start " // " )
12071199 (setq-local comment-start-skip
0 commit comments