Fix typo
This commit is contained in:
parent
4c844e2789
commit
f452191e62
2
ell.c
2
ell.c
|
@ -847,7 +847,7 @@ ell_eval_native (struct ell *ell, const char *name, struct ell_v *args,
|
||||||
static bool
|
static bool
|
||||||
ell_eval_resolved (struct ell *ell, struct ell_v *body, struct ell_v *args,
|
ell_eval_resolved (struct ell *ell, struct ell_v *body, struct ell_v *args,
|
||||||
struct ell_v **result) {
|
struct ell_v **result) {
|
||||||
// Resolving names ecursively could be pretty fatal, let's not do that
|
// Resolving names recursively could be pretty fatal, let's not do that
|
||||||
if (body->type == ELL_STRING)
|
if (body->type == ELL_STRING)
|
||||||
return ell_check (ell, (*result = ell_clone (body)));
|
return ell_check (ell, (*result = ell_clone (body)));
|
||||||
struct ell_v *arguments = NULL;
|
struct ell_v *arguments = NULL;
|
||||||
|
|
Loading…
Reference in New Issue