]> Nishi Git Mirror - gwion.git/commitdiff
:art: Allow per nspc operator
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Sat, 9 May 2020 19:31:04 +0000 (21:31 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Sat, 9 May 2020 19:31:04 +0000 (21:31 +0200)
src/parse/operator.c

index 15c2bdd79b17b52d047bc891711b8209680ac988..49c2eba0ad022965030ada52dcda3904a0eb9e9c 100644 (file)
@@ -128,14 +128,12 @@ ANN static m_bool op_exist(const struct OpChecker* ock, const Nspc n) {
 }
 
 ANN m_bool add_op(const Gwion gwion, const struct Op_Import* opi) {
-  Nspc n = gwion->env->curr;
-  do {
-    struct OpChecker ock = { gwion->env, &n->info->op_map, opi, 0 };
-    CHECK_BB(op_exist(&ock, n))
-  } while((n = n->parent));
-  if(!gwion->env->curr->info->op_map.ptr)
-    map_init(&gwion->env->curr->info->op_map);
+  const Nspc nspc = gwion->env->curr;
   struct OpChecker ock = { gwion->env, &gwion->env->curr->info->op_map, opi, 0 };
+  if(!nspc->info->op_map.ptr)
+    map_init(&nspc->info->op_map);
+  else
+    CHECK_BB(op_exist(&ock, nspc))
   const Vector v = op_vector(gwion->mp, &ock);
   const M_Operator* mo = new_mo(gwion->mp, opi);
   vector_add(v, (vtype)mo);