diff options
-rw-r--r-- | .config/emacs/modules/mm-editing.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el index 5f51d7a..b482143 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -14,7 +14,10 @@ (let (indent-tabs-mode) (apply function arguments))) -(dolist (command #'(align c-backslash-region comment-dwim)) +(dolist (command #'(align + c-backslash-region + comment-dwim + makefile-backslash-region)) (advice-add command :around #'mm-editing-force-space-indentation)) |