From 3a0f661844eddb49e1ce273319e12c8570fcfae2 Mon Sep 17 00:00:00 2001 From: Rafael Zalamena Date: Mon, 4 Nov 2019 10:56:42 -0300 Subject: [PATCH] tools: fix emacs configuration file It was missing a set of parentheses and a dot before `indent-tabs-mode'. More information here: https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html#Directory-Variables Signed-off-by: Rafael Zalamena --- .dir-locals.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.dir-locals.el b/.dir-locals.el index 21392ecf28..e47f245db7 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -2,7 +2,7 @@ ;;; For more information see (info "(emacs) Directory Variables") ;;; Match project coding conventions -((c-mode - (indent-tabs-mode . t) - (show-trailing-whitespace . t) - (c-basic-offset . 8))) +((c-mode . ((indent-tabs-mode . t) + (show-trailing-whitespace . t) + (c-basic-offset . 8) + ))) -- 2.39.5