summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 8ca4c820..7bf5fb32 100644
--- a/lib.c
+++ b/lib.c
@@ -1404,7 +1404,7 @@ obj_t *lazy_str_force_upto(obj_t *lstr, obj_t *index)
type_check(lstr, LSTR);
lim = cdr(lstr->ls.opts);
- while (gt(index, length_str(lstr->ls.prefix)) && lstr->ls.list &&
+ while (gt(index, length_str(lstr->ls.prefix)) && lstr->ls.list &&
or2(nullp(lim),gt(lim,zero)))
{
obj_t *next = pop(&lstr->ls.list);