aboutsummaryrefslogtreecommitdiff
path: root/nomsu_compiler.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nomsu_compiler.lua')
-rw-r--r--nomsu_compiler.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/nomsu_compiler.lua b/nomsu_compiler.lua
index d04c71f..0cedd50 100644
--- a/nomsu_compiler.lua
+++ b/nomsu_compiler.lua
@@ -26,15 +26,15 @@ fail_at = function(source, msg)
end
local title, err_msg, hint = msg:match("([^:]*):[ \n]+(.*)[ \n]+Hint: (.*)")
if not err_msg then
- err_msg, hint = msg:match("*(.*)[ \n]+Hint:[ \n]+(.*)")
- title = "Error"
+ err_msg, hint = msg:match("(.*)[ \n]+Hint:[ \n]+(.*)")
+ title = "Failure"
end
if not err_msg then
title, err_msg = msg:match("([^:]*):[ \n]+(.*)")
end
if not err_msg then
err_msg = msg
- title = "Error"
+ title = "Failure"
end
local err_str = pretty_error({
title = title,