From 79c1fcefcf2b135deacb743dc5d2badeb67db09c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 31 Aug 2020 23:19:31 -0400 Subject: [PATCH] Fix #3863: "load" ispell after flyspell Emacs loads both ispell and flyspell at startup, so to lazy load user configuration to either package, we fool Emacs into thinking neither is loaded yet. However, this means we need a trigger to eventually "load" ispell, which we didn't have until now, causing #3863. --- modules/checkers/spell/config.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/checkers/spell/config.el b/modules/checkers/spell/config.el index 3ef75d375..6848505d3 100644 --- a/modules/checkers/spell/config.el +++ b/modules/checkers/spell/config.el @@ -173,6 +173,8 @@ #'flyspell-prog-mode)) :config + (provide 'ispell) ; forcibly load ispell configs + (setq flyspell-issue-welcome-flag nil ;; Significantly speeds up flyspell, which would otherwise print ;; messages for every word when checking the entire buffer