about summary refs log tree commit diff stats
path: root/034call.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-08 13:26:02 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-08 13:37:43 -0700
commit2e8c5d39157d1178ad453c86d94d4e1830d8dfe6 (patch)
tree7fe460af6045a8fa161c19acb2021f46ec9cdb46 /034call.cc
parent6dc1379b5ab74bbd081a4e059cd04257ba7272c3 (diff)
downloadmu-2e8c5d39157d1178ad453c86d94d4e1830d8dfe6.tar.gz
1723
Some reorg before we start plumbing 'reply' from 'run-interactive' to
return a string containing the results.
Diffstat (limited to '034call.cc')
-rw-r--r--034call.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/034call.cc b/034call.cc
index 6d820809..45251b52 100644
--- a/034call.cc
+++ b/034call.cc
@@ -107,10 +107,7 @@ inline const vector<instruction>& routine::steps() const {
 // when we reach the end of one call, we may reach the end of the one below
 // it, and the one below that, and so on
 while (current_step_index() >= SIZE(Current_routine->steps())) {
-  if (current_recipe_name() == "interactive") {
-//?     trace("foo") << "showing warnings again"; //? 1
-    Hide_warnings = false;
-  }
+  // Falling Through End Of Recipe
   --Callstack_depth;
 //?   cerr << "reply " << Current_routine->calls.size() << '\n'; //? 2
   Current_routine->calls.pop_front();