minor cleanup
This commit is contained in:
parent
f34b4547a5
commit
4b3117e349
|
|
@ -578,6 +578,16 @@ clear(JoyListPtr stack, __attribute__((unused)) JoyListPtr expression)
|
|||
}
|
||||
|
||||
|
||||
void
|
||||
dup(JoyListPtr stack, __attribute__((unused)) JoyListPtr expression)
|
||||
{
|
||||
JoyList s = *stack;
|
||||
JoyList node = pop_any(stack);
|
||||
*stack = s;
|
||||
push_thing(node->head, stack);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
truthy(JoyListPtr stack, __attribute__((unused)) JoyListPtr expression)
|
||||
{
|
||||
|
|
@ -614,16 +624,6 @@ truthy(JoyListPtr stack, __attribute__((unused)) JoyListPtr expression)
|
|||
}
|
||||
|
||||
|
||||
void
|
||||
dup(JoyListPtr stack, __attribute__((unused)) JoyListPtr expression)
|
||||
{
|
||||
JoyList s = *stack;
|
||||
JoyList node = pop_any(stack);
|
||||
*stack = s;
|
||||
push_thing(node->head, stack);
|
||||
}
|
||||
|
||||
|
||||
JoyList def_abs_body;
|
||||
JoyList def_anamorphism_body;
|
||||
JoyList def_app1_body;
|
||||
|
|
|
|||
Loading…
Reference in New Issue