From 257a5d995309b44cb42f53496c0e7df82406c941 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Tue, 22 Oct 2013 11:08:42 -0400 Subject: [PATCH] [emacs] change indent level of php case label --- .emacs.d/init.d/php.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs.d/init.d/php.el b/.emacs.d/init.d/php.el index 8a9297a..0b8dd78 100644 --- a/.emacs.d/init.d/php.el +++ b/.emacs.d/init.d/php.el @@ -6,7 +6,8 @@ "Customize PHP indentation" (c-set-offset 'arglist-cont-nonempty 'c-lineup-arglist) - (c-set-offset 'substatement-open 0)) + (c-set-offset 'substatement-open 0) + (c-set-offset 'case-label '+)) (add-hook 'php-mode-hook 'my-php-mode-hook)