Fix bug in error handling where __sub would be clobbered.
diff --git a/share/jmk/dir-locals.el b/share/jmk/dir-locals.el
index 0f6ea64..c8688db 100644
--- a/share/jmk/dir-locals.el
+++ b/share/jmk/dir-locals.el
@@ -1,6 +1,6 @@
 ((nil . ((eval
 		  . (let ((path (expand-file-name (or buffer-file-name "."))))
 			  (setq-local flycheck-clang-include-path
-						(jmk-includes-for path)
-						flycheck-clang-args
-						(jmk-other-flags-for path)))))))
+						  (jmk-includes-for path)
+						  flycheck-clang-args
+						  (jmk-other-flags-for path)))))))