Function: hfy-unmark-trailing-whitespace

hfy-unmark-trailing-whitespace is a byte-compiled function defined in htmlfontify.el.gz.

Signature

(hfy-unmark-trailing-whitespace)

Documentation

Undo the effect of hfy-mark-trailing-whitespace.

Source Code

;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defun hfy-unmark-trailing-whitespace ()
  "Undo the effect of `hfy-mark-trailing-whitespace'."
  (when show-trailing-whitespace
    (with-silent-modifications
      (remove-text-properties (point-min) (point-max)
                              '(hfy-show-trailing-whitespace nil)))))