about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-02 09:01:00 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-02 09:01:00 -0800
commita85f98b7b7de9920ce4ac2af8fde1bb59fe1a138 (patch)
tree1eba0aa5a505979b7e04ec428cbcdcd2c0229995
parent58f24dd21ad9fac773be3f22c9679c8cfdb93e67 (diff)
downloadmu-a85f98b7b7de9920ce4ac2af8fde1bb59fe1a138.tar.gz
2347
-rw-r--r--029tools.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/029tools.cc b/029tools.cc
index cb5eae0e..2aa06f62 100644
--- a/029tools.cc
+++ b/029tools.cc
@@ -100,6 +100,7 @@ case HIDE_ERRORS: {
 :(before "End Primitive Recipe Implementations")
 case HIDE_ERRORS: {
   Hide_errors = true;
+  Hide_warnings = true;
   break;
 }
 
@@ -114,6 +115,7 @@ case SHOW_ERRORS: {
 :(before "End Primitive Recipe Implementations")
 case SHOW_ERRORS: {
   Hide_errors = false;
+  Hide_warnings = false;
   break;
 }