diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-05-10 17:54:32 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-05-10 17:54:32 -0700 |
commit | 19ec71ba06fb953d9838a930ee5e1522092a8493 (patch) | |
tree | 362fee756ad5ef486d7b8e4f5a909507dac7e5ca /match.c | |
parent | 12b74f698287f2fb4b5d6b20d02f810d808a45f6 (diff) | |
download | txr-19ec71ba06fb953d9838a930ee5e1522092a8493.tar.gz txr-19ec71ba06fb953d9838a930ee5e1522092a8493.tar.bz2 txr-19ec71ba06fb953d9838a930ee5e1522092a8493.zip |
String type related bugfixes: neglecting to handle all three kinds in
some places. In particular, the test case
echo : | ./txr -c '@a:@a' -
breaks because of neglected LIT in do_match_line.
* arith.c (tofloat, toint): Handle LIT type in switch.
* lib.c (ref, refset, replace, update): Handle LSTR type.
* match.c (do_match_line, do_output_line): Handle LSTR and LIT
objects in switch.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1234,6 +1234,8 @@ static val do_match_line(match_line_ctx *c) } break; case STR: + case LSTR: + case LIT: { val newpos; if (!match_str(c->dataline, elem, c->pos)) { @@ -1767,6 +1769,8 @@ static void do_output_line(val bindings, val specline, val filter, val out) } break; case STR: + case LSTR: + case LIT: put_string(elem, out); break; case 0: |