Function: magit-section--remove-text-properties

magit-section--remove-text-properties is a byte-compiled function defined in magit-section.el.

Signature

(magit-section--remove-text-properties STRING)

Documentation

Remove all text-properties from STRING.

Most importantly magit-section(var)/magit-section(fun).

Source Code

;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit-section--remove-text-properties (string)
  "Remove all text-properties from STRING.
Most importantly `magit-section'."
  (set-text-properties 0 (length string) nil string)
  string)