about summary refs log tree commit diff stats
path: root/040brace.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-04-04 10:49:13 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-04-04 10:49:13 -0700
commitba1fb981f6ce186e37c73e26ec79925bbaf991eb (patch)
tree081ea9387520005585ca226677a86ed94215a366 /040brace.cc
parente62aa7e305a0ea8ae2c79522588c3bbc80fa4dc3 (diff)
downloadmu-ba1fb981f6ce186e37c73e26ec79925bbaf991eb.tar.gz
3811
Diffstat (limited to '040brace.cc')
-rw-r--r--040brace.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/040brace.cc b/040brace.cc
index e6afce89..7cb0a11d 100644
--- a/040brace.cc
+++ b/040brace.cc
@@ -60,7 +60,7 @@ void transform_braces(const recipe_ordinal r) {
     }
     if (inst.label == "}") {
       if (open_braces.empty()) {
-        raise << maybe(get(Recipe, r).name) << "missing '{' in '" << get(Recipe, r).name << "'\n" << end();
+        raise << maybe(get(Recipe, r).name) << "unbalanced '}'\n" << end();
         return;
       }
       open_braces.pop();