(defun import-to-mopp (symbol)
(let ((sym (find-symbol (string symbol) :it.bese.arnesi.mopp)))
(when sym
(unexport sym :it.bese.arnesi.mopp)
(unintern sym :it.bese.arnesi.mopp)))
(import symbol :it.bese.arnesi.mopp)
(export symbol :it.bese.arnesi.mopp)
t)Source Context