From e7d4fc9953a0b0ca0d36cd35cd12034da134bc49 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Thu, 12 Sep 2019 20:11:47 -0400 Subject: [PATCH] Fix occasional dependency error with FlyCheck --- init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.el b/init.el index cdeea34..643587c 100644 --- a/init.el +++ b/init.el @@ -414,6 +414,8 @@ ;; Load FlyCheck (use-package flycheck + :requires + (pkg-info) :hook (prog-mode . flycheck-mode) (c++-mode-hook . (lambda () (setq flycheck-clang-standard "c++17")))