From 1c136c3e932d94551cdc86c83521cbf076d12df2 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 58cd1606a..f4e9ec9a6 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"); }