1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05: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); assert(interpreter);
js_State *J = js_newstate(NULL, NULL, JS_STRICT); js_State *J = js_newstate(NULL, NULL, 0);
if (!J) { if (!J) {
return NULL; return NULL;