Function: allout-next-single-char-property-change
allout-next-single-char-property-change is a for
next-single-char-property-change, defined in textprop.c.
This function is obsolete since 28.1; use
next-single-char-property-change instead.
Signature
(allout-next-single-char-property-change POSITION PROP &optional OBJECT LIMIT)
Documentation
Return the position of next text property or overlay change for a specific property.
Scans characters forward from POSITION till it finds a change in the PROP property, then returns the position of the change. If the optional third argument OBJECT is a buffer (or nil, which means the current buffer), POSITION is a buffer position (integer or marker). If OBJECT is a string, POSITION is a 0-based index into it.
In a string, scan runs to the end of the string, unless LIMIT is non-nil.
In a buffer, scan runs to end of buffer, unless LIMIT is non-nil.
If the optional fourth argument LIMIT is non-nil, don't search
past position LIMIT; return LIMIT if nothing is found before LIMIT.
However, if OBJECT is a buffer and LIMIT is beyond the end of the
buffer, this function returns point-max, not LIMIT.
The property values are compared with eq.
Aliases
allout-next-single-char-property-change (obsolete since 28.1)