From: Sergio Durigan Junior Date: Fri, 18 Apr 2014 01:46:30 +0000 (-0300) Subject: Add .dir-locals.el X-Git-Tag: v2014.2~4 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Frnetclient.git;a=commitdiff_plain;h=afa747c3ea14d39417463b1694d5261f64d10424 Add .dir-locals.el This comment adds the file .dir-locals.el, which is a special file loaded by Emacs every time a file is visited. For now, it just sets the coding style to "linux". --- diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..4370b9f --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,18 @@ +;; Emacs settings +;; Copyright (C) 2014 Sergio Durigan Junior + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +; Set the coding style to Linux. +((c-mode . ((c-file-style . "linux"))))