From: Neil Roberts Date: Sun, 2 Dec 2018 17:22:11 +0000 (+0100) Subject: freedreno: Add .dir-locals to the common directory X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8600aa35bd307d6eec6776a8871acebfe3b35f5a;p=mesa.git 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 --- 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) + ) + )