Function: gnus-article-delete-invisible-text

gnus-article-delete-invisible-text is an autoloaded and byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-article-delete-invisible-text)

Documentation

Delete all invisible text in the current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-delete-invisible-text ()
  "Delete all invisible text in the current buffer."
  (save-excursion
    (let ((b (point-min)))
      (while (setq b (text-property-any b (point-max) 'invisible t))
	(delete-region
	 b (or (text-property-not-all b (point-max) 'invisible t)
	       (point-max)))))))