Skip to content

Commit e82cdb5

Browse files
committed
Further fixed Runtime.Reader.ReadList
1 parent 7040968 commit e82cdb5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Naggum.Runtime/Reader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private static Object ReadList(StreamReader reader)
9292
in_list = false;
9393
}
9494
}
95-
list = new Cons(list_stack.Pop(), list);
95+
while (list_stack.Count > 0) list = new Cons(list_stack.Pop(), list);
9696
return list;
9797
}
9898

0 commit comments

Comments
 (0)