Function: kproperty:put

kproperty:put is a byte-compiled function defined in kproperty.el.

Signature

(kproperty:put START END PROPERTY-LIST &optional OBJECT)

Documentation

From START to END, add PROPERTY-LIST properties to the text.

The optional fourth argument, OBJECT, is the string or buffer containing the text. Text inserted before or after this region does not inherit the added properties.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kproperty.el
(defun kproperty:put (start end property-list &optional object)
  "From START to END, add PROPERTY-LIST properties to the text.
The optional fourth argument, OBJECT, is the string or buffer containing the
text.  Text inserted before or after this region does not inherit the added
properties."
  (add-text-properties
   start end (append property-list '(rear-nonsticky t)) object))