diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-04-27 21:16:08 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-04-27 21:16:08 -0700 |
commit | 3717be6b0d5eb45213fd5d277662d3b32abadeaf (patch) | |
tree | fa6a83c0fce811cff2f965cca11a6829ffe8848e /lib.c | |
parent | 641120932ab1f9e88c77c9a9d3043ed8f8e2faeb (diff) | |
download | txr-3717be6b0d5eb45213fd5d277662d3b32abadeaf.tar.gz txr-3717be6b0d5eb45213fd5d277662d3b32abadeaf.tar.bz2 txr-3717be6b0d5eb45213fd5d277662d3b32abadeaf.zip |
match-str: tests and bugfix.
* lib.c (do_match_str): Fix wrong return value calculation
in LSTR-LSTR case.
* tests/015/match-str.tl: New file.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4554,7 +4554,7 @@ static val do_match_str(val bigstr, val str, cnum pos, val self) return nil; } - return length_str_le(str, num(i)) ? num(i + 1) : nil; + return length_str_le(str, num(i)) ? num(p) : nil; } default: invalid_ops(self, bigstr, str); |