Function: forms--run-functions
forms--run-functions is a byte-compiled function defined in
forms.el.gz.
Signature
(forms--run-functions FUNCTIONS)
Source Code
;; Defined in /usr/src/emacs/lisp/forms.el.gz
(defvar read-file-filter) ; bound in forms--intuit-from-file
;; The code used to use `run-hooks' but in a way that's actually
;; incompatible with hooks (and with lexical scoping), so this function
;; approximates the actual behavior that `run-hooks' provided.
(defun forms--run-functions (functions)
(if (functionp functions)
(funcall functions)
(mapc #'funcall functions)))