Variable: visual-wrap--safe-display-specs

visual-wrap--safe-display-specs is a variable defined in visual-wrap.el.gz.

Value

(space-width min-width height raise)

Documentation

A list of display specs that don't interfere with wrap prefixes.

A "safe" display spec is one that won't interfere with the additional text properties that visual-wrap-prefix-mode(var)/visual-wrap-prefix-mode(fun) uses.

Specs that replace the text are unsafe, since they generally determine the range of text to replace via eq. If visual-wrap-prefix-mode(var)/visual-wrap-prefix-mode(fun) were to add text properties to some subset of this range, it would violate this assumption.

Source Code

;; Defined in /usr/src/emacs/lisp/visual-wrap.el.gz
(defvar visual-wrap--safe-display-specs
  '(space-width min-width height raise)
  "A list of display specs that don't interfere with wrap prefixes.
A \"safe\" display spec is one that won't interfere with the additional
text properties that `visual-wrap-prefix-mode' uses.

Specs that replace the text are unsafe, since they generally determine
the range of text to replace via `eq'.  If `visual-wrap-prefix-mode'
were to add text properties to some subset of this range, it would
violate this assumption.")