im bored.

This commit is contained in:
ManDude
2022-04-17 06:14:30 +01:00
parent d827db20b3
commit 070e957ce8
54 changed files with 275 additions and 282 deletions
+1 -1
View File
@@ -577,7 +577,7 @@ Object Reader::read_list(TextStream& ts, bool expect_close_paren) {
if (objects.size() < 2) {
throw_reader_error(ts, "A list with a dot must have at least one thing before the dot", -1);
}
auto back = objects.back();
auto& back = objects.back();
objects.pop_back();
auto rv = build_list(objects);