Merge pull request #930 from kaishuu0123/cleanup-parse.y

cleanup: delete commented out match_op() from parse.y
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-03-03 04:33:21 -08:00
-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)
{