1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00

[mujs] Do not enable strict mode

This commit is contained in:
Witold Filipczyk 2023-10-18 15:54:15 +02:00
parent 1a25f30831
commit ad077babc4

View File

@ -131,7 +131,7 @@ mujs_get_interpreter(struct ecmascript_interpreter *interpreter)
{
assert(interpreter);
js_State *J = js_newstate(NULL, NULL, JS_STRICT);
js_State *J = js_newstate(NULL, NULL, 0);
if (!J) {
return NULL;