From 5812c42e7bb680592e60454b003f228dfe95869a Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sun, 12 Nov 2017 16:01:51 +1100 Subject: Add internal function defs.luastring_cmp for string equality checks --- src/ldebug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ldebug.js') diff --git a/src/ldebug.js b/src/ldebug.js index 3637b5d..59520c3 100644 --- a/src/ldebug.js +++ b/src/ldebug.js @@ -565,7 +565,7 @@ const luaG_opinterror = function(L, p1, p2, msg) { const luaG_ordererror = function(L, p1, p2) { let t1 = ltm.luaT_objtypename(L, p1); let t2 = ltm.luaT_objtypename(L, p2); - if (t1.join() === t2.join()) + if (defs.luastring_cmp(t1, t2)) luaG_runerror(L, defs.to_luastring("attempt to compare two %s values", true), t1); else luaG_runerror(L, defs.to_luastring("attempt to compare %s with %s", true), t1, t2); -- cgit v1.2.3-54-g00ecf