Function: visual-wrap--remove-properties

visual-wrap--remove-properties is a byte-compiled function defined in visual-wrap.el.gz.

Signature

(visual-wrap--remove-properties START END)

Documentation

Remove visual wrapping text properties from START to END.

Source Code

;; Defined in /usr/src/emacs/lisp/visual-wrap.el.gz
(defun visual-wrap--remove-properties (start end)
  "Remove visual wrapping text properties from START to END."
  ;; Remove `min-width' from any prefixes we detected.
  (remove-display-text-property start end 'min-width)
  ;; Remove `wrap-prefix' related properties from any lines with
  ;; prefixes we detected.
  (remove-text-properties start end '(wrap-prefix nil)))