Function: font-lock-prepend-text-property
font-lock-prepend-text-property is a byte-compiled function defined in
font-lock.el.gz.
Signature
(font-lock-prepend-text-property START END PROP VALUE &optional OBJECT)
Documentation
Prepend to one property of the text from START to END.
Arguments PROP and VALUE specify the property and value to prepend to the value already in place. The resulting property values are always lists. Optional argument OBJECT is the string or buffer containing the text.
Source Code
;; Defined in /usr/src/emacs/lisp/font-lock.el.gz
(defun font-lock-prepend-text-property (start end prop value &optional object)
"Prepend to one property of the text from START to END.
Arguments PROP and VALUE specify the property and value to prepend to the value
already in place. The resulting property values are always lists.
Optional argument OBJECT is the string or buffer containing the text."
(font-lock--add-text-property start end prop value object nil))