From: David Kastrup Date: Sun, 19 Aug 2012 20:12:07 +0000 (+0200) Subject: Establish some coding styles in Emacs X-Git-Tag: release/2.17.0-1~10 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=541ef18729efd6f540454e06c4d4630dfcd4d477;p=lilypond.git 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. --- 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)))