summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/edit.c b/edit.c
index fe79e76..d90d558 100644
--- a/edit.c
+++ b/edit.c
@@ -87,7 +87,7 @@ static void tabComplete(size_t id) {
 		tab.len = tab.pre;
 	}
 
-	char mbs[MB_LEN_MAX * tab.pre + 1];
+	char mbs[MB_LEN_MAX * Cap];
 	const wchar_t *ptr = &buf[tab.pos];
 	size_t n = wcsnrtombs(mbs, &ptr, tab.pre, sizeof(mbs) - 1, NULL);
 	assert(n != (size_t)-1);
@@ -100,7 +100,7 @@ static void tabComplete(size_t id) {
 		return;
 	}
 
-	wchar_t wcs[strlen(comp) + 1];
+	wchar_t wcs[Cap];
 	n = mbstowcs(wcs, comp, sizeof(wcs));
 	assert(n != (size_t)-1);
 	if (tab.pos + n + 2 > Cap) {
td>Defer printing comment if line is blank or closing braceJune McEnroe This fixes badly indented comments. 2021-09-08Up default min-repeat to 30 linesJune McEnroe 2021-09-08Handle dirty lines in git-commentJune McEnroe 2021-09-08Document and install git-commentJune McEnroe 2021-09-08Add repeat and all options to git-commentJune McEnroe 2021-09-08Add group threshold to git-commentJune McEnroe