Function: mh-mapc

mh-mapc is an autoloaded and byte-compiled function defined in mh-utils.el.gz.

Signature

(mh-mapc FUNCTION LIST)

Documentation

Apply FUNCTION to each element of LIST for side effects only.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
;;;###mh-autoload
(defun mh-mapc (function list)
  "Apply FUNCTION to each element of LIST for side effects only."
  (while list
    (funcall function (car list))
    (setq list (cdr list))))