blob: a3f15e96349ddd27b839f3b78392e6356c0f4b19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- conf -*-
# Use cpp-style diffs for .h and .c files. This is useful
# if you modify classes defined in those files.
*.h diff=cpp
*.c diff=cpp
# Autoconf.
*.ac whitespace=space-before-tab,indent-with-non-tab,trailing-space
*.m4 whitespace=space-before-tab,indent-with-non-tab,trailing-space
# Generated files.
configure -whitespace
aclocal.m4 -whitespace
# Tab-indented files.
*.[ly] whitespace=space-before-tab,indent-with-non-tab,trailing-space
*.def whitespace=space-before-tab,indent-with-non-tab,trailing-space
|