diff options
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/config.org | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index fd071e0..4d71eb2 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -810,9 +810,9 @@ with a custom function that reads a list of mode-specific indentation settings. evil-shift-width width) (mm-for-each extra (setq x width))))) (add-hook (mm-mode-to-hook mode) callback 95) - (let ((ts-mode (mm-mode-to-ts-mode mode))) - (when (boundp ts-mode) - (add-hook (mm-mode-to-hook ts-mode) callback 95)))))) + (let ((ts-hook (mm-mode-to-hook (mm-mode-to-ts-mode mode)))) + (when (boundp ts-hook) + (add-hook ts-hook callback 95)))))) (mm-set-indentation-settings) |