From ba0fbca9d5acb3d16e5d2d650548f6645c65f96e Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 11 Oct 2016 13:00:01 +0100 Subject: [PATCH] marksman: fix a small newline handling bug --- Applications/util/marksman.c | 1 + 1 file changed, 1 insertion(+) 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) { -- 2.34.1