diff --git a/modules/checkers/spell/autoload/flyspell.el b/modules/checkers/spell/autoload/+flyspell.el similarity index 92% rename from modules/checkers/spell/autoload/flyspell.el rename to modules/checkers/spell/autoload/+flyspell.el index 24abd42e1..74b2dd33d 100644 --- a/modules/checkers/spell/autoload/flyspell.el +++ b/modules/checkers/spell/autoload/+flyspell.el @@ -1,4 +1,4 @@ -;;; checkers/spell/autoload/flyspell.el -*- lexical-binding: t; -*- +;;; checkers/spell/autoload/+flyspell.el -*- lexical-binding: t; -*- ;;;###if (featurep! +flyspell) ;;;###autodef diff --git a/modules/checkers/spell/autoload/spell-fu.el b/modules/checkers/spell/autoload/+spell-fu.el similarity index 92% rename from modules/checkers/spell/autoload/spell-fu.el rename to modules/checkers/spell/autoload/+spell-fu.el index 86c4bfde4..1049a8a28 100644 --- a/modules/checkers/spell/autoload/spell-fu.el +++ b/modules/checkers/spell/autoload/+spell-fu.el @@ -1,4 +1,4 @@ -;;; checkers/spell/autoload/spell-fu.el -*- lexical-binding: t; -*- +;;; checkers/spell/autoload/+spell-fu.el -*- lexical-binding: t; -*- ;;;###if (not (featurep! +flyspell)) (defun +spell--correct (replace poss word orig-pt start end) @@ -50,10 +50,10 @@ (defun +spell/correct () "Correct spelling of word at point." (interactive) - ;; We fake awareness for our personal dictionary by stopping short if spell-fu - ;; hasn't highlighted the current word. This is necessary because - ;; ispell/aspell struggles to find our `ispell-personal-dictionary' if it's - ;; not in $HOME. + ;; HACK Fake awareness for our personal dictionary by stopping short if + ;; spell-fu hasn't highlighted the current word. This is necessary + ;; because ispell/aspell struggles to find our + ;; `ispell-personal-dictionary' if it's not in $HOME. (unless (memq 'spell-fu-incorrect-face (face-at-point nil t)) (user-error "%S is correct" (thing-at-point 'word t))) (ispell-set-spellchecker-params)