From 9c62ef9dfa4dafa6f514b47d32409c22cfae2c51 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 5 Jun 2018 03:20:19 +0200 Subject: [PATCH] Fix flycheck-posframe errors #653 The +childframe check was too simple (and unnecessary, since the posframe function autoloaded). --- modules/feature/syntax-checker/autoload.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/feature/syntax-checker/autoload.el b/modules/feature/syntax-checker/autoload.el index 2265061f9..d0f6b9de2 100644 --- a/modules/feature/syntax-checker/autoload.el +++ b/modules/feature/syntax-checker/autoload.el @@ -18,9 +18,7 @@ "TODO" :lighter nil :group 'doom - (if (featurep! +childframe) - (require 'flycheck-posframe) - (require 'flycheck-popup-tip)) + (require 'flycheck-popup-tip) (let ((hooks '(post-command-hook focus-out-hook))) (cond ;; Use our display function and remember the old one but only if we haven't