about summary refs log tree commit diff stats
path: root/013literal_string.cc
diff options
context:
space:
mode:
Diffstat (limited to '013literal_string.cc')
-rw-r--r--013literal_string.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/013literal_string.cc b/013literal_string.cc
index 7424a31d..98cc85e7 100644
--- a/013literal_string.cc
+++ b/013literal_string.cc
@@ -73,7 +73,7 @@ void slurp_quoted_comment_oblivious(istream& in, ostringstream& out) {
     if (brace_depth == 0) break;
   }
   if (in.eof() && brace_depth > 0) {
-    raise << "unbalanced '['\n" << end();
+    raise_error << "unbalanced '['\n" << end();
     out.clear();
   }
 }
@@ -100,7 +100,7 @@ void slurp_quoted_comment_aware(istream& in, ostringstream& out) {
     out << c;
     if (c == ']') return;
   }
-  raise << "unbalanced '['\n" << end();
+  raise_error << "unbalanced '['\n" << end();
   out.clear();
 }