Skip to content
Snippets Groups Projects
Commit f3b5e162 authored by Austin Seipp's avatar Austin Seipp
Browse files

rts/includes: Fix up .dir-locals.el


After 23bb9046, these were slightly busted for `c-mode`.

Signed-off-by: default avatarAustin Seipp <austin@well-typed.com>
parent 15f661cc
No related merge requests found
;;; Directory Local Variables
;;; See Info node `(emacs) Directory Variables' for more information.
((c-mode
(fill-column . 80))
(emacs-lisp-mode
(buffer-file-coding-system . utf-8-unix)
(c-basic-offset . 4)
(indent-tabs-mode)))
;; Default mode settings: no tabs, 80 column, UTF8
((nil
(indent-tabs-mode . nil)
(fill-column . 80)
(buffer-file-coding-system . utf-8-unix))
;; c-mode settings: 'Allman' BSD style, 4 space indents
(c-mode
(c-file-style . "BSD")
(c-basic-offset . 4)))
;;; Directory Local Variables
;;; See Info node `(emacs) Directory Variables' for more information.
((c-mode
(fill-column . 80))
(emacs-lisp-mode
(buffer-file-coding-system . utf-8-unix)
(c-basic-offset . 4)
(indent-tabs-mode)))
;; Default mode settings: no tabs, 80 column, UTF8
((nil
(indent-tabs-mode . nil)
(fill-column . 80)
(buffer-file-coding-system . utf-8-unix))
;; c-mode settings: 'Allman' BSD style, 4 space indents
(c-mode
(c-file-style . "BSD")
(c-basic-offset . 4)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment