pub fn remove_list_of_text_properties<'ob>(
start: usize,
end: usize,
list_of_properties: Gc<ObjectType<'ob>>,
object: Gc<ObjectType<'ob>>,
env: &mut Rt<Env<'_>>,
) -> Result<()>
Expand description
/* Remove some properties from text from START to END. The third argument LIST-OF-PROPERTIES is a list of property names to remove. If the optional fourth argument OBJECT is a buffer (or nil, which means the current buffer), START and END are buffer positions (integers or markers). If OBJECT is a string, START and END are 0-based indices into it. Return t if any property was actually removed, nil otherwise.