diff --git a/helix-core/src/graphemes.rs b/helix-core/src/graphemes.rs index 15ef3eb0..d9e5e022 100644 --- a/helix-core/src/graphemes.rs +++ b/helix-core/src/graphemes.rs @@ -481,7 +481,7 @@ fn from(g: String) -> Self { let ptr = Box::into_raw(g.into_bytes().into_boxed_slice()) as *mut u8; GraphemeStr { ptr: unsafe { NonNull::new_unchecked(ptr) }, - len: i32::try_from(len).unwrap() as u32, + len: (i32::try_from(len).unwrap() as u32) | Self::MASK_OWNED, phantom: PhantomData, } }