diff options
author | June McEnroe <june@causal.agency> | 2020-01-27 19:40:08 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-01-27 19:40:08 -0500 |
commit | 63373213b60487b34045d77cfcd7fb2fe8a1b8ff (patch) | |
tree | 8e4a617cddb2a92406ff1adfcf42654d4060ec69 | |
parent | Encode trailing whitespace in quote-printable properly (diff) | |
download | notemap-63373213b60487b34045d77cfcd7fb2fe8a1b8ff.tar.gz notemap-63373213b60487b34045d77cfcd7fb2fe8a1b8ff.zip |
Split lines so that they're 76, not 77 characters
Forgot to account for the added =.
Diffstat (limited to '')
-rw-r--r-- | notemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |