diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-11-22 19:49:39 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-11-22 19:49:39 -0500 |
commit | bcc3d5e6e350643f05e7114d12017aae13508c34 (patch) | |
tree | 7c37f9b7178019016e962f5174b10e8b4dc15660 /lisp | |
parent | aad46c00bba10a1bc87b75d3d47ad272df06b969 (diff) | |
download | emacs.d-bcc3d5e6e350643f05e7114d12017aae13508c34.tar.gz |
km/magit-patch-create-series: Enable auto-fill-mode and flyspell-mode
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-magit.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/km-magit.el b/lisp/km-magit.el index 280f2af..f681eab 100644 --- a/lisp/km-magit.el +++ b/lisp/km-magit.el @@ -919,7 +919,9 @@ appending [M/N] to each entry." (find-file-other-window cover) (goto-char (point-min)) (re-search-forward (rx "Subject: [PATCH" (zero-or-more not-newline) "] ")) - (setq buffer-read-only nil))))) + (setq buffer-read-only nil) + (auto-fill-mode 1) + (flyspell-mode 1))))) ;;; Copy functions |