From 4c6f90f9e524fd4c713da616d88e56ebe4dc0b21 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Mon, 17 Dec 2018 12:16:26 -0800 Subject: [PATCH] construct: Add interruption point before waiting for input. --- construct/console.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/construct/console.cc b/construct/console.cc index c2538f8c0..af46fc63a 100644 --- a/construct/console.cc +++ b/construct/console.cc @@ -163,6 +163,7 @@ try show_message(); do { + ctx::interruption_point(); wait_input(); } while(handle_line());