From a5196ddae8e8d7ee913a9f74773678868e050527 Mon Sep 17 00:00:00 2001 From: Jonas Bernoulli Date: Sat, 15 Oct 2016 14:35:28 +0200 Subject: [PATCH] git-commit: no longer set value of two variables The function on `git-commit-finish-query-functions' by default no longer complains about "too long" summary lines (which is why we set this to nil before) but it still complains about non-empty second line (which is a good thing). The default value of `git-commit-summary-max-length' has been increased from 50 to 68, which is close enough to the 64 we used here before. --- init.el | 2 -- 1 file changed, 2 deletions(-) diff --git a/init.el b/init.el index ab8d050..e6c7bbf 100644 --- a/init.el +++ b/init.el @@ -90,8 +90,6 @@ (use-package git-commit :defer t :config - (setq git-commit-finish-query-functions nil) - (setq git-commit-summary-max-length 64) (remove-hook 'git-commit-setup-hook 'git-commit-setup-changelog-support) (remove-hook 'git-commit-setup-hook 'git-commit-propertize-diff) (remove-hook 'git-commit-setup-hook 'with-editor-usage-message)