From 541ef18729efd6f540454e06c4d4630dfcd4d477 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Sun, 19 Aug 2012 22:12:07 +0200 Subject: [PATCH] Establish some coding styles in Emacs This uses directory variables to enforce some coding style features in C++, Scheme and Texinfo files in the source tree. --- .dir-locals.el | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000000..72472a6055 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,11 @@ +;;; Directory Local Variables +;;; See Info node `(emacs) Directory Variables' for more information. + +((c++-mode + (c-default-style . "gnu") + (indent-tabs-mode)) + (scheme-mode + (indent-tabs-mode)) + (texinfo-mode + (fill-column . 66) + (indent-tabs-mode))) -- 2.39.2