From: Alan Cox Date: Tue, 11 Oct 2016 12:00:01 +0000 (+0100) Subject: marksman: fix a small newline handling bug X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=ba0fbca9d5acb3d16e5d2d650548f6645c65f96e;p=FUZIX.git marksman: fix a small newline handling bug --- diff --git a/Applications/util/marksman.c b/Applications/util/marksman.c index 0a0745f5..b71d7597 100644 --- a/Applications/util/marksman.c +++ b/Applications/util/marksman.c @@ -734,6 +734,7 @@ static void parse_line(char *p) case ' ': /* four spaces: literal copy */ if (memcmp(p, " ", 4) == 0) { copy_literal(p + 4); + newline(); /* Because the source had one we ate */ return; } if (memcmp(p, " ", 2) == 0) {