summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-06-05 18:34:13 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-06-05 18:34:13 -0700
commitb8516ddf354d54a816a33251ff4a01fcfec51751 (patch)
tree69c7dc50070f7327840367db1d9597833dc0dc4e
parent3c1c62dbe6901887d6dfaba67427a8dcbd6ddd6b (diff)
downloadtxr-b8516ddf354d54a816a33251ff4a01fcfec51751.tar.gz
txr-b8516ddf354d54a816a33251ff4a01fcfec51751.tar.bz2
txr-b8516ddf354d54a816a33251ff4a01fcfec51751.zip
Allow empty @(catch) and @(finally).
* parser.y (catch_clauses_opt): Don't diagnose empty catch and finally. There is no benefit in doing so; moreover, it contravenes the documentation, which explicitly says these may be empty. I.e. this fixes a regression.
-rw-r--r--parser.y15
1 files changed, 3 insertions, 12 deletions
diff --git a/parser.y b/parser.y
index 2062669a..181980ba 100644
--- a/parser.y
+++ b/parser.y
@@ -562,25 +562,16 @@ try_clause : TRY newl
catch_clauses_opt : CATCH ')' newl
clauses_opt
- catch_clauses_opt { if ((!opt_compat || opt_compat > 139)
- && nilp($4))
- yyerr("empty catch clause");
- $$ = cons(list(catch_s, cons(t, nil),
+ catch_clauses_opt { $$ = cons(list(catch_s, cons(t, nil),
$4, nao), $5);
rl($$, num($1)); }
| CATCH exprs ')' newl
clauses_opt
- catch_clauses_opt { if ((!opt_compat || opt_compat > 139)
- && nilp($5))
- yyerr("empty catch clause");
- $$ = cons(list(catch_s, $2, $5, nao),
+ catch_clauses_opt { $$ = cons(list(catch_s, $2, $5, nao),
$6);
rl($$, num($1)); }
| FINALLY newl
- clauses_opt { if ((!opt_compat || opt_compat > 139)
- && nilp($3))
- yyerr("empty finally clause");
- $$ = cons(list(finally_s, nil,
+ clauses_opt { $$ = cons(list(finally_s, nil,
$3, nao),
nil);
rl($$, num($1)); }