From 6b45ccf4ed24dcfe437cf0159d6185119a2e8f95 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 5 Jul 2024 15:19:11 -0300 Subject: Removed compatibility with "= exp" in the REPL --- lua.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index bff6a8f5..3d807c98 100644 --- a/lua.c +++ b/lua.c @@ -565,10 +565,7 @@ static int pushline (lua_State *L, int firstline) { l = strlen(b); if (l > 0 && b[l-1] == '\n') /* line ends with newline? */ b[--l] = '\0'; /* remove it */ - if (firstline && b[0] == '=') /* for compatibility with 5.2, ... */ - lua_pushfstring(L, "return %s", b + 1); /* change '=' to 'return' */ - else - lua_pushlstring(L, b, l); + lua_pushlstring(L, b, l); lua_freeline(b); return 1; } -- cgit v1.2.3-55-g6feb