From 4066287b9842e56868938fceab4bb1948d757c93 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Thu, 7 May 2020 19:17:09 +0200 Subject: [PATCH] Let's see if the prompt suffixed spaces are still needed. Please shout if it breaks. --- client/src/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/ui.c b/client/src/ui.c index 0b0ffdb56..488cce8d9 100644 --- a/client/src/ui.c +++ b/client/src/ui.c @@ -314,7 +314,7 @@ static void fPrintAndLog(FILE *stream, const char *fmt, ...) { if (g_printAndLog & PRINTANDLOG_PRINT) { memcpy_filter_emoji(buffer3, buffer2, sizeof(buffer2), session.emoji_mode); fprintf(stream, "%s", buffer3); - fprintf(stream, " "); // cleaning prompt +// fprintf(stream, " "); // cleaning prompt fprintf(stream, "\n"); }