]> Nishi Git Mirror - gwion.git/commitdiff
:bug: small fix
authorJérémie Astor <fennecdjay@gmail.com>
Mon, 18 Apr 2022 08:22:33 +0000 (10:22 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Mon, 18 Apr 2022 08:22:33 +0000 (10:22 +0200)
src/compile.c

index 8bcfbee69b42224c5ba29dc79c894a5ead3f7f1f..5a0e380deba8c12c75eed7424345af05abf0d477 100644 (file)
@@ -103,7 +103,7 @@ ANN static inline m_bool _passes(struct Gwion_ *gwion, struct Compiler *c) {
 ANN static inline m_bool passes(struct Gwion_ *gwion, struct Compiler *c) {
   const Env     env = gwion->env;
   const Context ctx = new_context(env->gwion->mp, c->ast, env->name);
-ctx->locale = nspc_lookup_value1(gwion->env->global_nspc, insert_symbol(gwion->st, "@DefaultLocale"))->d.func_ref;
+//ctx->locale = nspc_lookup_value1(gwion->env->global_nspc, insert_symbol(gwion->st, "@DefaultLocale"))->d.func_ref;
   env_reset(env);
   load_context(ctx, env);
   const m_bool ret = _passes(gwion, c);