From a8a9e98ca22d97be0eb0bdbb59e3efa693bd3caa Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Thu, 7 May 2020 19:44:03 +0200 Subject: [PATCH] Revert "Let's see if the prompt suffixed spaces are still needed. Please shout if it breaks." ok now I see where it breaks :) will debug locally... This reverts commit 4066287b9842e56868938fceab4bb1948d757c93. --- 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 488cce8d9..0b0ffdb56 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"); }