From afe640b360f4a2df27e3c8a23f786cbd977f8dad Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Wed, 17 Oct 2018 17:38:02 +0200 Subject: [PATCH] freedreno: Fix the Emacs indentation configuration file MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/gallium/drivers/freedreno/.dir-locals.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- 2.30.2