From 4ee836a82b22a961db1bacc4bb3531c7b38ad34f Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sun, 13 Aug 2023 01:11:40 +0200 Subject: emacs: Only add ts hook if mode exists --- .config/emacs/config.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.config/emacs') 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) -- cgit v1.2.3