dir-locals.el: set case-label offset to 0
authorIlia Mirkin <imirkin@alum.mit.edu>
Wed, 3 Feb 2016 18:07:58 +0000 (13:07 -0500)
committerIlia Mirkin <imirkin@alum.mit.edu>
Wed, 3 Feb 2016 20:44:51 +0000 (15:44 -0500)
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 <imirkin@alum.mit.edu>
Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
.dir-locals.el

index d95eb48..4b53931 100644 (file)
@@ -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)))
   )