diff options
author | Neil Roberts <[email protected]> | 2018-10-17 17:38:02 +0200 |
---|---|---|
committer | Rob Clark <[email protected]> | 2018-10-17 12:44:48 -0400 |
commit | afe640b360f4a2df27e3c8a23f786cbd977f8dad (patch) | |
tree | 7eef87e94d26e04225bf37192bd6c5335e9f3dd7 | |
parent | 8e798e28f736e22e9e1e4534ab42a36cde14b142 (diff) |
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 <[email protected]>
-rw-r--r-- | src/gallium/drivers/freedreno/.dir-locals.el | 2 |
1 files changed, 1 insertions, 1 deletions
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") |