diff options
author | Neil Roberts <[email protected]> | 2018-12-02 18:22:11 +0100 |
---|---|---|
committer | Kristian H. Kristensen <[email protected]> | 2018-12-11 13:14:08 -0800 |
commit | 8600aa35bd307d6eec6776a8871acebfe3b35f5a (patch) | |
tree | 8e96ddee3174e8472e9ee73bf173b52499089def /src/freedreno/.dir-locals.el | |
parent | cfe8220904b79ee45083970c0325bf59a140e163 (diff) |
freedreno: Add .dir-locals to the common directory
The commit aa0fed10d35 moved a bunch of Freedreno code to a common
directory. The previous directory had a .dir-locals file for Emacs.
This patch copies it to the new directory as well.
Reviewed-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/freedreno/.dir-locals.el')
-rw-r--r-- | src/freedreno/.dir-locals.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/freedreno/.dir-locals.el b/src/freedreno/.dir-locals.el new file mode 100644 index 00000000000..b0e90fcbd53 --- /dev/null +++ b/src/freedreno/.dir-locals.el @@ -0,0 +1,8 @@ +((prog-mode + (indent-tabs-mode . t) + (tab-width . 4) + (c-basic-offset . 4) + (c-file-style . "k&r") + (fill-column . 78) + ) + ) |