aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux/git-hooks/commit-msg
diff options
context:
space:
mode:
authorStefan Monnier2014-12-15 15:09:04 -0500
committerStefan Monnier2014-12-15 15:09:04 -0500
commitfb420e7789b4f9a0481ee44dbdf37d3de6578ad3 (patch)
treeb4858f3b4a55d9acd2b886e1decfb7f049b6fd0b /build-aux/git-hooks/commit-msg
parent061db139896a6eabebef5bfe199744b6151493f3 (diff)
downloademacs-fb420e7789b4f9a0481ee44dbdf37d3de6578ad3.tar.gz
emacs-fb420e7789b4f9a0481ee44dbdf37d3de6578ad3.zip
* lisp/subr.el (sit-for): Tweak docstring.
Fixes: debbugs:19381 * src/buffer.c (syms_of_buffer) <Vafter_change_functions>: fix docstring. * build-aux/git-hooks/commit-msg (at_sign): Bump up line-length limit to 78.
Diffstat (limited to 'build-aux/git-hooks/commit-msg')
-rwxr-xr-xbuild-aux/git-hooks/commit-msg4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/git-hooks/commit-msg b/build-aux/git-hooks/commit-msg
index 5eb994c6fe0..2e3e4f21cda 100755
--- a/build-aux/git-hooks/commit-msg
+++ b/build-aux/git-hooks/commit-msg
@@ -87,8 +87,8 @@ exec $awk '
87 status = 1 87 status = 1
88 } 88 }
89 89
90 72 < length && $0 ~ space { 90 78 < length && $0 ~ space {
91 print "Line longer than 72 characters in commit message" 91 print "Line longer than 78 characters in commit message"
92 status = 1 92 status = 1
93 } 93 }
94 94