summaryrefslogtreecommitdiffstats
path: root/match.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-03-13 22:02:48 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-03-13 22:02:48 -0700
commit7f0f22c4e455f457d37ddf542b36c49db20d16af (patch)
treeae4b2ed4afa05a8714c86f80ce5a9d4a8d4afe05 /match.c
parentbe33de3909100a204726cdde52bf6077e890ca6d (diff)
downloadtxr-7f0f22c4e455f457d37ddf542b36c49db20d16af.tar.gz
txr-7f0f22c4e455f457d37ddf542b36c49db20d16af.tar.bz2
txr-7f0f22c4e455f457d37ddf542b36c49db20d16af.zip
Change: @(block) requires @(end) from now on.
Blocks no longer extend to the end of the surrounding scope. * match.c (v_block): Rewrite for new syntax. * parser.l (BLOCK): New token type handled. * parser.y (BLOCK): New token. (block_clause): New nonterminal grammar symbol. (clause): Collateral fix: replaced a bunch of list(X, nao) forms with cons(X, nil). Introduced block_clause as a constituent of clause. * txr.1: Revamped documentation of block, and wrote about using blocks for reducing nested skips and reducing backtracking in general.
Diffstat (limited to 'match.c')
-rw-r--r--match.c27
1 files changed, 21 insertions, 6 deletions
diff --git a/match.c b/match.c
index 2b00c5cc..24d7a3f9 100644
--- a/match.c
+++ b/match.c
@@ -2110,20 +2110,35 @@ static val v_block(match_files_ctx *c)
{
spec_bind (specline, first_spec, c->spec);
- val name = first(rest(first_spec));
+ val args = rest(first_spec);
+ val name = first(args);
+ val spec = second(args);
if (rest(specline))
sem_error(specline, lit("unexpected material after block directive"), nao);
- if ((c->spec = rest(c->spec)) != nil)
{
uw_block_begin(name, result);
- result = match_files(*c);
+ result = match_files(mf_spec(*c, spec));
uw_block_end;
- return result;
- }
- return next_spec_k;
+ {
+ cons_bind (new_bindings, success, result);
+
+ if (!success) {
+ return nil;
+ } else if (success == t) {
+ c->data = nil;
+ } else {
+ cons_bind (new_data, new_line, success);
+ c->data = new_data;
+ c->data_lineno = new_line;
+ }
+
+ c->bindings = new_bindings;
+ return next_spec_k;
+ }
+ }
}
static val v_accept_fail(match_files_ctx *c)