Function: font-lock-append-text-property

font-lock-append-text-property is a byte-compiled function defined in font-lock.el.gz.

Signature

(font-lock-append-text-property START END PROP VALUE &optional OBJECT)

Documentation

Append to one property of the text from START to END.

Arguments PROP and VALUE specify the property and value to append 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-append-text-property (start end prop value &optional object)
  "Append to one property of the text from START to END.
Arguments PROP and VALUE specify the property and value to append 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 t))