Function: gnus-run-hook-with-args

gnus-run-hook-with-args is a byte-compiled function defined in gnus-util.el.gz.

Signature

(gnus-run-hook-with-args HOOK &rest ARGS)

Documentation

Does the same as run-hook-with-args, but saves the current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-run-hook-with-args (hook &rest args)
  "Does the same as `run-hook-with-args', but saves the current buffer."
  (save-current-buffer
    (apply #'run-hook-with-args hook args)))