helmutkian / cl-react

Common Lisp (Parenscript) utilities for building web apps in ReactJs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Package prefix problems in master

epeld opened this issue · comments

Hi,
Thanks for the nice library!

One minor problem: I get output like this:

"function cl_react_createClass(objectSpecification) {
    return cl_react_React.cl_react_createClass(objectSpecification);
};
function cl_react_createElement(type, props, children) {
    return cl_react_React.cl_react_createElement(type, props, children);
};

when building from master. The culprit is this line:
(setf (ps:ps-package-prefix :cl-react) "cl_react_")
in package.lisp, as I am sure you know, but I don't know how to fix it!

You might want to try the refactor-psx branch. I think the bug is fixed there. Master is a little out of date.
Ben