diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-03-09 20:15:52 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-03-09 20:15:52 -0700 |
commit | 6d962407c0ea219214c752a7a63fac83adab0301 (patch) | |
tree | d0167abb0f827cc67ae3002f3c0d6f648e71d7d2 /match.c | |
parent | 0c514dc343033eafde26679f858796549a96cc8d (diff) | |
download | txr-6d962407c0ea219214c752a7a63fac83adab0301.tar.gz txr-6d962407c0ea219214c752a7a63fac83adab0301.tar.bz2 txr-6d962407c0ea219214c752a7a63fac83adab0301.zip |
* lib.c (lazy_sub_str): Bugfix: "from" was mistakenly used
in the adjustment of the "to" value.
* match.c (search_form): Use predefined constants for -1 and 1
instead of calling num.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -457,7 +457,7 @@ static val search_form(match_line_ctx *c, val needle_form, val from_end) } else { val spec = cons(needle_form, nil); val pos = from_end ? length_str(c->dataline) : c->pos; - val step = from_end ? num(-1) : num(1); + val step = from_end ? negone : one; rlcp(spec, needle_form); |