-> 3.17.0.RC2
[valgrind.git] / drd / tests / .dir-locals.el
blob0d94ded88f038d14d5f539ca17920fe79041ba0e
1 ;; Emacs settings for drd tests.
4 ;; Standard settings for editing C source files.
5 (c-mode . (
6 ;; Apply the Linux style as a base.
7 (c-file-style . "linux")
8 ;; Use spaces instead of tabs for indentation.
9 (indent-tabs-mode . nil)
10 ;; Indent 2 columns per level. Note that this differs from
11 ;; the usual Valgrind style.
12 (c-basic-offset . 2)
13 ;; Lines should be limited to 80 columns.
14 (fill-column . 80)