From bc5125b7192c7c1152fb18ac94393a67f296718f Mon Sep 17 00:00:00 2001 From: Mark Thom Date: Thu, 13 Jan 2022 19:43:54 -0700 Subject: [PATCH] put_complete_string should push the empty list to the heap for empty strings (#1209) --- src/machine/heap.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/machine/heap.rs b/src/machine/heap.rs index 6a5e14ef..a7317cc3 100644 --- a/src/machine/heap.rs +++ b/src/machine/heap.rs @@ -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) } } } -- 2.54.0