diff options
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -726,7 +726,7 @@ val nthcdr(val pos, val list) gc_hint(list); - while (n-- > 0) + while (list && n-- > 0) list = cdr(list); return list; |