From: Jonas Fonseca Date: Mon, 18 Sep 2006 16:02:36 +0000 (+0200) Subject: Always clear the status window after prompting X-Git-Tag: tig-0.5~3 X-Git-Url: https://git.distorted.org.uk/~mdw/tig/commitdiff_plain/7a06ebdfce5b597b918cea0599db65ac30b5afea Always clear the status window after prompting --- diff --git a/tig.c b/tig.c index 471fa4d..f5f536c 100644 --- a/tig.c +++ b/tig.c @@ -3269,12 +3269,12 @@ read_prompt(const char *prompt) } } - if (status == CANCEL) { - /* Clear the status window */ - status_empty = FALSE; - report(""); + /* Clear the status window */ + status_empty = FALSE; + report(""); + + if (status == CANCEL) return NULL; - } buf[pos++] = 0;