cleanup: delete commented out match_op() from parse.y

This commit is contained in:
Kouki Ooyatsu
2013-03-03 03:09:55 +09:00
parent bc46c374b4
commit 1a7bb9dfa6
-9
View File
@@ -757,15 +757,6 @@ call_bin_op(parser_state *p, node *recv, char *m, node *arg1)
return new_call(p, recv, intern(m), list1(list1(arg1)));
}
/*
// (:match (a . b))
static node*
match_op(parser_state *p, node *a, node *b)
{
return cons((node*)NODE_MATCH, cons((node*)a, (node*)b));
}
*/
static void
args_with_block(parser_state *p, node *a, node *b)
{