From d9829a3606a422b04d8c76d1a148ec97fad6778a Mon Sep 17 00:00:00 2001 From: Mark Date: Sat, 24 Jun 2023 14:12:04 -0600 Subject: [PATCH] fix string incompleteness (#1828) --- src/machine/partial_string.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/partial_string.rs b/src/machine/partial_string.rs index fce47204..812941fc 100644 --- a/src/machine/partial_string.rs +++ b/src/machine/partial_string.rs @@ -181,7 +181,7 @@ impl<'a> HeapPStrIter<'a> { self.brent_st.hare = result.focus; } else { read_heap_cell!(self.heap[result.focus], - (HeapCellValueTag::Lis | HeapCellValueTag::Str) => { + (HeapCellValueTag::Lis | HeapCellValueTag::Str | HeapCellValueTag::PStr) => { self.focus = self.heap[self.brent_st.hare]; } _ => { -- 2.54.0