Function: nnoo-import-1

nnoo-import-1 is a byte-compiled function defined in nnoo.el.gz.

Signature

(nnoo-import-1 BACKEND IMPORTS)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnoo.el.gz
(defun nnoo-import-1 (backend imports)
  (let ((call-function
	 (if (symbolp (car imports)) (pop imports) #'nnoo-parent-function)))
    (dolist (imp imports)
      (dolist (fun (or (cdr imp) (nnoo-functions (car imp))))
	(let ((function (nnoo-symbol backend (nnoo-rest-symbol fun))))
	  (unless (fboundp function)
	    (noo--defalias function
                           (lambda (&rest args)
                             (funcall call-function backend fun args)))))))))