From 63373213b60487b34045d77cfcd7fb2fe8a1b8ff Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 27 Jan 2020 19:40:08 -0500 Subject: Split lines so that they're 76, not 77 characters Forgot to account for the added =. --- notemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notemap.c') diff --git a/notemap.c b/notemap.c index c7f116f..35dba0c 100644 --- a/notemap.c +++ b/notemap.c @@ -248,7 +248,7 @@ static void append( int len = 0; bool ws = false; while (EOF != (ch = fgetc(note))) { - if (len == 76 && ch != '\n') { + if (len == 75 && ch != '\n') { fprintf(msg, "=\r\n"); len = 0; } -- cgit 1.4.1