put_complete_string should push the empty list to the heap for empty strings (#1209)

This commit is contained in:
Mark Thom
2022-01-13 19:43:54 -07:00
parent c6d23f9a0b
commit bc5125b719

View File

@@ -147,7 +147,9 @@ pub(crate) fn put_complete_string(
}
}
None => {
empty_list_as_cell!()
let h = heap.len();
heap.push(empty_list_as_cell!());
heap_loc_as_cell!(h)
}
}
}