summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-02-25 03:52:49 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-02-25 03:52:49 -0800
commit267a20b4c57f13ccbf89e54469c8dcb5ad09b631 (patch)
tree45fb5aa220f54066640c4c8345b4f70a7d303d1e /parser.y
parent3fdecca05ea781c592d5acf0c3610f3a2be31706 (diff)
downloadtxr-267a20b4c57f13ccbf89e54469c8dcb5ad09b631.tar.gz
txr-267a20b4c57f13ccbf89e54469c8dcb5ad09b631.tar.bz2
txr-267a20b4c57f13ccbf89e54469c8dcb5ad09b631.zip
* parser.y (clause): "Doh" moment. We don't need the special
transformation of the load syntax because the parent location is already associated with the syntax. * match.c (v_load): Pull out source location info from the form itself.
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y10
1 files changed, 1 insertions, 9 deletions
diff --git a/parser.y b/parser.y
index 49705100..98f408a5 100644
--- a/parser.y
+++ b/parser.y
@@ -141,15 +141,7 @@ clause : all_clause { $$ = list($1, nao); rlcp($$, $1); }
rlcp($$, $1); }
| try_clause { $$ = list($1, nao); rlcp($$, $1); }
| output_clause { $$ = list($1, nao); rlcp($$, $1); }
- | line { val elem = car($1);
-
- if (consp(elem) && car(elem) == load_s)
- { elem = rlcp(cons(load_s,
- cons(spec_file_str,
- cdr(elem))), elem);
- $$ = rlcp(cons(elem, cdr($1)), $1); }
- else
- { $$ = $1; } }
+ | line { $$ = $1; }
| repeat_clause { $$ = nil;
yyerror("repeat outside of output"); }
;