From 7a64bdb40faba8ffd5141c1fda6091d45843e2e4 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 23 Jan 2019 15:28:02 -0800 Subject: [PATCH] Made the 'attempt to call an undefined global' error message improving more aggressive --- error_handling.lua | 4 +--- error_handling.moon | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/error_handling.lua b/error_handling.lua index 10882fa..fd6572e 100644 --- a/error_handling.lua +++ b/error_handling.lua @@ -71,9 +71,7 @@ enhance_error = function(error_message, start_fn, stop_fn) do local fn = error_message:match("attempt to call a nil value %(global '(.*)'%)") if fn then - if fn:match("x[0-9A-F][0-9A-F]") then - error_message = "The action '" .. tostring(fn:from_lua_id()) .. "' is not defined." - end + error_message = "The action '" .. tostring(fn:from_lua_id()) .. "' is not defined." end end local level = 2 diff --git a/error_handling.moon b/error_handling.moon index 23cb5ea..18ae4ef 100644 --- a/error_handling.moon +++ b/error_handling.moon @@ -50,8 +50,7 @@ enhance_error = (error_message, start_fn, stop_fn)-> unless error_message and error_message\match("\x1b") error_message or= "" if fn = error_message\match("attempt to call a nil value %(global '(.*)'%)") - if fn\match "x[0-9A-F][0-9A-F]" - error_message = "The action '#{fn\from_lua_id!}' is not defined." + error_message = "The action '#{fn\from_lua_id!}' is not defined." level = 2 while true -- TODO: reduce duplicate code