From 5569e99884972b8d69437ca6f8c35876a597ce22 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 9 Dec 2015 01:21:19 -0800 Subject: [PATCH] Avoid breaking ^C-for-cancel after tab completion. --- Console.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Console.cpp b/Console.cpp index 997168d..b0b3768 100644 --- a/Console.cpp +++ b/Console.cpp @@ -336,6 +336,7 @@ static char **Complete(const char *word, int start, int end) { rl_attempted_completion_over = ~0; std::string line(rl_line_buffer, start); char **values(CYComplete(word, command_ + line, &Run)); + mode_ = Parsing; return values; } -- 2.50.0