renamed prim to pf.

added module manipulation functions
This commit is contained in:
2018-02-09 04:24:50 +00:00
parent a8969a53f3
commit 46602c4511
6 changed files with 448 additions and 39 deletions

View File

@ -971,7 +971,7 @@ static HCL_INLINE int call_primitive (hcl_t* hcl, hcl_ooi_t nargs)
return -1;
}
return ((hcl_prim_impl_t)rcv->slot[0]) (hcl, nargs);
return ((hcl_pfimpl_t)rcv->slot[0]) (hcl, nargs);
}
/* ------------------------------------------------------------------------- */