Always clear the status window after prompting
authorJonas Fonseca <fonseca@diku.dk>
Mon, 18 Sep 2006 16:02:36 +0000 (18:02 +0200)
committerJonas Fonseca <fonseca@antimatter.localdomain>
Mon, 18 Sep 2006 16:02:36 +0000 (18:02 +0200)
tig.c

diff --git a/tig.c b/tig.c
index 471fa4d..f5f536c 100644 (file)
--- 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;