about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-25 00:24:12 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-25 00:24:12 -0700
commit7381b17c351ae6e63a7bc3ad65839fa28ff5cbd4 (patch)
tree5d2873f34459ab57631012e6b17c7caa2e46d2ec /011load.cc
parentc5e965d87fe2ef50ac70722eea73e89095b9178d (diff)
downloadmu-7381b17c351ae6e63a7bc3ad65839fa28ff5cbd4.tar.gz
1846
Diffstat (limited to '011load.cc')
-rw-r--r--011load.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/011load.cc b/011load.cc
index 7135b548..978d2fae 100644
--- a/011load.cc
+++ b/011load.cc
@@ -204,12 +204,12 @@ void skip_comma(istream& in) {
 //: step on their own toes. But there'll be many occasions later where
 //: we'll want to disable the warnings.
 :(before "End Globals")
-bool Hide_redefine_warnings = false;
+bool Disable_redefine_warnings = false;
 :(before "End Setup")
-Hide_redefine_warnings = false;
+Disable_redefine_warnings = false;
 :(code)
 bool warn_on_redefine(const string& recipe_name) {
-  if (Hide_redefine_warnings) return false;
+  if (Disable_redefine_warnings) return false;
   return true;
 }