diff options
author | Björn Gustavsson <[email protected]> | 2010-03-30 11:28:13 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-03-30 11:28:13 +0000 |
commit | 695b693a70a36160ab81f45bcbdbedf90ca94860 (patch) | |
tree | 24aeca2597ffd405bbb409dc2ee3f92dd38954c6 | |
parent | 38960dcc0746fcea4895dfac588b618c4cb18a69 (diff) | |
download | otp-695b693a70a36160ab81f45bcbdbedf90ca94860.tar.gz otp-695b693a70a36160ab81f45bcbdbedf90ca94860.tar.bz2 otp-695b693a70a36160ab81f45bcbdbedf90ca94860.zip |
erl_parse: Remove more stray 'cond' support
Unfortunately, commit 1e2ecf8c492b6d499880b8676e3c1fe0c5793103
removed all cond support except for two lines.
-rw-r--r-- | lib/stdlib/src/erl_parse.yrl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/stdlib/src/erl_parse.yrl b/lib/stdlib/src/erl_parse.yrl index ea91ec5927..808e1a8926 100644 --- a/lib/stdlib/src/erl_parse.yrl +++ b/lib/stdlib/src/erl_parse.yrl @@ -37,7 +37,6 @@ atom1 record_expr record_tuple record_field record_fields if_expr if_clause if_clauses case_expr cr_clause cr_clauses receive_expr fun_expr fun_clause fun_clauses -%% cond_expr cond_clause cond_clauses try_expr try_catch try_clause try_clauses query_expr function_call argument_list exprs guard @@ -269,7 +268,6 @@ expr_max -> if_expr : '$1'. expr_max -> case_expr : '$1'. expr_max -> receive_expr : '$1'. expr_max -> fun_expr : '$1'. -%%expr_max -> cond_expr : '$1'. expr_max -> try_expr : '$1'. expr_max -> query_expr : '$1'. |