From 0dc08a30ce9dae822b9371059b8b452c57de4bc4 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sun, 19 Jul 2015 11:35:13 +0200 Subject: [PATCH] tell emacs users how to follow coding conventions --- .dir-locals.el | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 00000000..ca9b5159 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,9 @@ +;; emacs local configuration settings for getdns source +;; surmised by dkg on 2015-07-19 10:10:51+0200 + +((c-mode + (indent-tabs-mode . t) + (tab-width . 8) + (c-basic-offset . 8) + (c-file-style . "linux")) + )