Function: gnus-article-show-hidden-text

gnus-article-show-hidden-text is a byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-article-show-hidden-text TYPE &optional DUMMY)

Documentation

Show all hidden text of type TYPE.

Originally it is hide instead of DUMMY.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-show-hidden-text (type &optional _dummy)
  "Show all hidden text of type TYPE.
Originally it is hide instead of DUMMY."
  (let ((inhibit-read-only t))
    (gnus-remove-text-properties-when
     'article-type type
     (point-min) (point-max)
     (cons 'article-type (cons type
			       gnus-hidden-properties)))
    (gnus-delete-wash-type type)))