From 8612715fe2afe77c48cbf4d4a1273a3bd1a08c26 Mon Sep 17 00:00:00 2001 From: Thomas Ulmer Date: Fri, 4 Jul 2025 10:27:06 -0700 Subject: attempt to fix ispell hook --- emacs/init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/emacs/init.el b/emacs/init.el index fa303cc..eaec53b 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -925,6 +925,10 @@ BEG and END define the region." :custom (ispell-personal-dictionary "/home/tmu/.aspell.en.pws") :config + (defun ispell-mode (&optional arg) + "Make some old packages work with modern ispell." + (interactive) + (ispell-minor-mode arg)) (advice-add 'ispell-mode :before 'debug) (setq-default text-mode-hook (cons 'ispell-minor-mode (remove 'ispell-mode text-mode-hook)))) -- cgit v1.2.3