Add another drd/tests/bar_bad exp variant.
[valgrind.git] / .dir-locals.el
blob5957ed94496c90b2e0e7f9f9398baed7f7b5acae
1 ;; Emacs settings for Valgrind.
4 ;; Format used to turn a bug number into a URL (when displaying it).
5 (nil . ((bug-reference-url-format . "http://bugs.kde.org/show_bug.cgi?id=%s")))
7 ;; Standard settings for editing C source files.
8 (c-mode . (
9 ;; Apply the Linux style as a base.
10 (c-file-style . "linux")
11 ;; Use spaces instead of tabs for indentation.
12 (indent-tabs-mode . nil)
13 ;; Indent 3 columns per level.
14 (c-basic-offset . 3)
15 ;; Lines should be limited to 80 columns.
16 (fill-column . 80)