From d89e55fe0e78e29808c48e7f12003e765195a21e Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 25 Nov 2010 17:16:27 +0000 Subject: Overwrite PROMPT_SP string if it should remain invisible, even with an upcoming newline. --- Src/utils.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Src/utils.c') diff --git a/Src/utils.c b/Src/utils.c index 2e30c176a..daa753a1f 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -1292,9 +1292,10 @@ preprompt(void) countprompt(str, &w, 0, -1); opts[PROMPTPERCENT] = percents; zputs(str, shout); - for (w = (int)columns - w - !hasxn; w > 0; w--) - putc(' ', shout); - putc('\r', shout); + if (hasxn) + fprintf(shout, "%*s\r%*s\r", (int)columns - w, "", w, ""); + else + fprintf(shout, "%*s\r", (int)columns - w - 1, ""); free(str); } -- cgit 1.4.1