Files
doomemacs/modules/checkers/spell/doctor.el
Henrik Lissner 448bc5cae2 refactor: use negated flags
Ref: 7a806521a92c
2024-10-20 02:41:50 -04:00

11 lines
379 B
EmacsLisp

;;; checkers/spell/doctor.el -*- lexical-binding: t; -*-
(when (or (modulep! -flyspell)
(modulep! +aspell))
(unless (executable-find "aspell")
(warn! "Couldn't find aspell executable; spell checker will not work")))
(when (modulep! +hunspell)
(unless (executable-find "hunspell")
(warn! "Couldn't find hunspell executable; spell checker will not work")))