aboutsummaryrefslogtreecommitdiff
path: root/lisp/git-commit.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2024-12-17 09:45:57 +0100
committerJonas Bernoulli <jonas@bernoul.li>2024-12-17 09:45:57 +0100
commitc1a86066e8d20b5b54d4c3df0c044c4b9a99a30e (patch)
tree13786cb656a79911a0f8624e6e2f3d3df86b5f6b /lisp/git-commit.el
parent139e0fcff35cd0d71328b43ebb265823912a92fd (diff)
Depend on Emacs >= 27.1
This version was released more than four years ago and Emacs 30.1 is around the corner. This is the release available on Debian Bullseye (oldstable).
Diffstat (limited to 'lisp/git-commit.el')
-rw-r--r--lisp/git-commit.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/git-commit.el b/lisp/git-commit.el
index 48d40f0..4007c12 100644
--- a/lisp/git-commit.el
+++ b/lisp/git-commit.el
@@ -649,8 +649,7 @@ the input isn't tacked to the comment."
(defun git-commit-setup-changelog-support ()
"Treat ChangeLog entries as unindented paragraphs."
- (when (fboundp 'log-edit-fill-entry) ; New in Emacs 27.
- (setq-local fill-paragraph-function #'log-edit-fill-entry))
+ (setq-local fill-paragraph-function #'log-edit-fill-entry)
(setq-local fill-indent-according-to-mode t)
(setq-local paragraph-start (concat paragraph-start "\\|\\*\\|(")))