summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2025-07-04 10:27:06 -0700
committerThomas Ulmer <thomasmulmer02@gmail.com>2025-07-04 10:27:06 -0700
commit8612715fe2afe77c48cbf4d4a1273a3bd1a08c26 (patch)
tree09f30fefd73cfebe6ba7cfc12aa70256a8cbaad7 /emacs
parent1c4fa7962b0f1420155af9a7bc7f2065e9d7852f (diff)
attempt to fix ispell hook
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el4
1 files changed, 4 insertions, 0 deletions
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))))