From 4dc291bfb468cc0511f7d6d64450b93b10acb0bb Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Sun, 31 Jan 2016 23:16:50 -0500 Subject: [PATCH] Fix flycheck loading tweak --- layers/syntax-checking/funcs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layers/syntax-checking/funcs.el b/layers/syntax-checking/funcs.el index 6001a1127..be0f54b1b 100644 --- a/layers/syntax-checking/funcs.el +++ b/layers/syntax-checking/funcs.el @@ -13,6 +13,6 @@ "Use flycheck in MODE by default, if `syntax-checking-enable-by-default' is true." (when (and syntax-checking-enable-by-default - (listp flycheck-global-modes - (not (eq 'not (car flycheck-global-modes))))) + (listp flycheck-global-modes) + (not (eq 'not (car flycheck-global-modes)))) (push mode flycheck-global-modes)))