From 8600aa35bd307d6eec6776a8871acebfe3b35f5a Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Sun, 2 Dec 2018 18:22:11 +0100 Subject: [PATCH] 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 --- src/freedreno/.dir-locals.el | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/freedreno/.dir-locals.el 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) + ) + )