From: Neil Roberts Date: Wed, 17 Oct 2018 15:38:02 +0000 (+0200) Subject: freedreno: Fix the Emacs indentation configuration file X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=afe640b360f4a2df27e3c8a23f786cbd977f8dad;p=mesa.git freedreno: Fix the Emacs indentation configuration file The .dir-locals.el had the wrong name for the truthy value so it wasn’t setting indent-tabs-mode. Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/.dir-locals.el b/src/gallium/drivers/freedreno/.dir-locals.el index aa20d495465..b0e90fcbd53 100644 --- a/src/gallium/drivers/freedreno/.dir-locals.el +++ b/src/gallium/drivers/freedreno/.dir-locals.el @@ -1,5 +1,5 @@ ((prog-mode - (indent-tabs-mode . true) + (indent-tabs-mode . t) (tab-width . 4) (c-basic-offset . 4) (c-file-style . "k&r")