Function: remove-display-text-property

remove-display-text-property is a byte-compiled function defined in compat-31.el.

Signature

(remove-display-text-property START END SPEC &optional OBJECT)

Documentation

[Compatibility function for remove-display-text-property, defined in Emacs
31.0.50. See (compat) Emacs 31.0.50' for more details.]

Remove the display specification SPEC from the text from START to END. SPEC is the car of the display specification to remove, e.g. height. If any text in the region has other display specifications, those specs are retained.

OBJECT is either a string or a buffer to remove the specification from. If omitted, OBJECT defaults to the current buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/compat-31.0.0.2/compat-31.el
(compat-defun remove-display-text-property (start end spec &optional object) ;; <compat-tests:remove-display-text-property>
  "Remove the display specification SPEC from the text from START to END.
SPEC is the car of the display specification to remove, e.g. `height'.
If any text in the region has other display specifications, those specs
are retained.

OBJECT is either a string or a buffer to remove the specification from.
If omitted, OBJECT defaults to the current buffer."
  (add-remove--display-text-property start end spec nil object 'remove))