From: Ken Hornstein Date: Tue, 3 Dec 2013 04:34:02 +0000 (-0500) Subject: Don't put a space after the trailing semicolon for group termination. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/b14917ec621812b9a0d66f8a3302467f5f85789a?ds=inline;hp=--cc Don't put a space after the trailing semicolon for group termination. --- b14917ec621812b9a0d66f8a3302467f5f85789a diff --git a/sbr/encode_rfc2047.c b/sbr/encode_rfc2047.c index ac340f71..e1a47855 100644 --- a/sbr/encode_rfc2047.c +++ b/sbr/encode_rfc2047.c @@ -721,8 +721,8 @@ do_reformat: */ if (groupflag && ! mn->m_ingrp) { - output = add("; ", output); - column += 2; + output = add(";", output); + column += 1; } groupflag = mn->m_ingrp;