From 8dffd72db541d2c82606697bf8efedc8aa186493 Mon Sep 17 00:00:00 2001 From: Mark Thom Date: Tue, 21 Apr 2026 16:22:38 -0700 Subject: [PATCH] replace tabs with spaces --- src/machine/machine_state_impl.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/machine/machine_state_impl.rs b/src/machine/machine_state_impl.rs index 80f6c61f..390ad99d 100644 --- a/src/machine/machine_state_impl.rs +++ b/src/machine/machine_state_impl.rs @@ -557,10 +557,10 @@ impl MachineState { } pub fn compare_term_test(&self, h1: HeapCellValue, h2: HeapCellValue) -> Option { - // all derefs downstack from this function are heap bound so - // dereference stack vars pointing into the heap while possible - let h1 = self.store(h1); - let h2 = self.store(h2); + // all derefs downstack from this function are heap bound so + // dereference stack vars pointing into the heap while possible + let h1 = self.store(h1); + let h2 = self.store(h2); for term_pair in ParallelHeapIter::from(self, h1, h2) { match term_pair { -- 2.54.0