branch: elpa/magit commit 139e0fcff35cd0d71328b43ebb265823912a92fd Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
git-commit-setup-changelog-support: Fix name of a used function --- lisp/git-commit.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/git-commit.el b/lisp/git-commit.el index 1a0eef7ceef..48d40f066a1 100644 --- a/lisp/git-commit.el +++ b/lisp/git-commit.el @@ -649,8 +649,8 @@ the input isn't tacked to the comment." (defun git-commit-setup-changelog-support () "Treat ChangeLog entries as unindented paragraphs." - (when (fboundp 'log-indent-fill-entry) ; New in Emacs 27. - (setq-local fill-paragraph-function #'log-indent-fill-entry)) + (when (fboundp 'log-edit-fill-entry) ; New in Emacs 27. + (setq-local fill-paragraph-function #'log-edit-fill-entry)) (setq-local fill-indent-according-to-mode t) (setq-local paragraph-start (concat paragraph-start "\\|\\*\\|(")))