From: Ilia Mirkin Date: Wed, 3 Feb 2016 18:07:58 +0000 (-0500) Subject: dir-locals.el: set case-label offset to 0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ad0e48e518cc9afa0ab5678a91696f4bee49abb6;p=mesa.git dir-locals.el: set case-label offset to 0 While this is the default, private .emacs files might have it set to something else. No harm in forcing it to 0. Signed-off-by: Ilia Mirkin Reviewed-by: Kristian Høgsberg --- diff --git a/.dir-locals.el b/.dir-locals.el index d95eb4803f6..4b5393198de 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -5,6 +5,7 @@ (c-file-style . "stroustrup") (fill-column . 78) (eval . (progn + (c-set-offset 'case-label '0) (c-set-offset 'innamespace '0) (c-set-offset 'inline-open '0))) )