about summary refs log tree commit diff stats
path: root/050scenario.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-25 07:58:09 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-25 07:58:09 -0800
commit5ed9bb135efb7e581eeb879b8af357d3b9baf6ea (patch)
treebdfc5274c6711311b6ead1be2ea2e7eb0a04b930 /050scenario.cc
parentf51e9f63b40ce3d5c4d40808bf1b7e83ab7d60ff (diff)
downloadmu-5ed9bb135efb7e581eeb879b8af357d3b9baf6ea.tar.gz
2702
Diffstat (limited to '050scenario.cc')
-rw-r--r--050scenario.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/050scenario.cc b/050scenario.cc
index d7ffda6f..fa87541b 100644
--- a/050scenario.cc
+++ b/050scenario.cc
@@ -171,8 +171,8 @@ void run_mu_scenario(const scenario& s) {
 //: doing that, regardless of anything else.
 :(scenarios run)
 :(scenario warn_on_redefine_scenario)
-% Hide_warnings = true;
-% Disable_redefine_warnings = true;
+% Hide_errors = true;
+% Disable_redefine_errors = true;
 recipe scenario-foo [
   1:number <- copy 34
 ]
@@ -180,7 +180,7 @@ recipe scenario-foo [
 recipe scenario-foo [
   1:number <- copy 35
 ]
-+warn: redefining recipe scenario-foo
++error: redefining recipe scenario-foo
 
 :(after "bool warn_on_redefine(const string& recipe_name)")
   if (recipe_name.find("scenario-") == 0) return true;