Function: nnmairix-call-backend

nnmairix-call-backend is a byte-compiled function defined in nnmairix.el.gz.

Signature

(nnmairix-call-backend FUNC &rest ARGS)

Documentation

Call a function FUNC on backend with ARGS.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnmairix.el.gz
(defun nnmairix-call-backend (func &rest args)
  "Call a function FUNC on backend with ARGS."
  (apply (intern (format "%s-%s" (symbol-name nnmairix-backend) func)) args))