From 172dac6bfefd9cfd4ab532c39ebafee23959b9bb Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Fri, 3 Dec 2021 18:25:46 +0100 Subject: [PATCH] fix wring flycheck include-path --- 2021/.dir-locals.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2021/.dir-locals.el b/2021/.dir-locals.el index 0342e84..a831374 100644 --- a/2021/.dir-locals.el +++ b/2021/.dir-locals.el @@ -1,4 +1,4 @@ -((nil . ((eval . (let ((root (expand-file-name "2021/" (projectile-project-root)))) +((nil . ((eval . (let ((root (expand-file-name (projectile-project-root)))) (setq-local flycheck-gcc-include-path (list (concat root "include")) compile-command (concat "make -C " root " all")))))))