Function: gnus-map-function

gnus-map-function is a byte-compiled function defined in gnus-util.el.gz.

Signature

(gnus-map-function FUNS ARG)

Documentation

Apply the result of the first function in FUNS to the second, and so on.

ARG is passed to the first function.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-map-function (funs arg)
  "Apply the result of the first function in FUNS to the second, and so on.
ARG is passed to the first function."
  (while funs
    (setq arg (funcall (pop funs) arg)))
  arg)