Function: nnweb-parse-find-all-1

nnweb-parse-find-all-1 is a byte-compiled function defined in nnweb.el.gz.

Signature

(nnweb-parse-find-all-1 TYPE CONTENTS)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnweb.el.gz
(defun nnweb-parse-find-all-1 (type contents)
  (let (result)
    (when (consp contents)
      (if (eq (car contents) type)
	  (push contents result)
	(when (listp (cdr contents))
	  (dolist (element contents)
	    (when (consp element)
	      (setq result
		    (nconc result (nnweb-parse-find-all-1 type element))))))))
    result))