Update rust

This commit is contained in:
Andras Schmelczer 2025-06-07 12:09:02 +01:00
parent a628ff348e
commit 3abe028d74
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 5 additions and 7 deletions

View file

@ -62,12 +62,11 @@ where
self.shift -= *deleted_character_count as i64;
self.last_operation = None;
}
} else if let Operation::Insert { .. } = last_operation {
if threshold_index + self.shift - last_operation.len() as i64
} else if let Operation::Insert { .. } = last_operation
&& threshold_index + self.shift - last_operation.len() as i64
> last_operation.end_index() as i64
{
self.last_operation = None;
}
{
self.last_operation = None;
}
}
}