minor cleanup

This commit is contained in:
Simon Forman
2023-02-05 19:40:16 -08:00
parent 3a11fcb834
commit b70231bcff
+1 -5
View File
@@ -231,12 +231,8 @@ void
push_quote_onto_expression(JoyList el, JoyListPtr expression)
{
JoyList node;
if (!el) return;
node = newJoyList;
node->head = newJoyType;
node->head->kind = joyList;
node->head->value.el = el;
node = make_list_node(el);
node->tail = *expression;
*expression = node;
}