On Dec 11, 1:12 am, Rafael Jesús Alcántara Pérez <[email protected]> wrote:
> The problem is that if I try to macroexpand the next sexp: > > (defstore > *perec-store* > :perec > `(:host ,mypackage.bd:*skynet-database-host* > :database ,mypackage.bd:*skynet-database-name* > :user-name ,mypackage.bd:*skynet-database-user* > :password ,mypackage.bd:*skynet-database-password*) > :load-store-system-p nil)) > > Then I get this error: > > error while parsing arguments to DEFMACRO DEFSTORE: > odd number of elements in keyword/value list: [...] You need to call the macro in this fashion: (defstore *perec-store* :perec :host *myhost* :database *mydatabase* :load-store-system-p nil) Leslie -- You received this message because you are subscribed to the Google Groups "weblocks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/weblocks?hl=en.
