Christopher Eineke wrote: > > I can't provide a macro utility for that yet. ;) Turns out it's not that hard: (defmacro scond (&rest clauses) `(cond ,@(assocify clauses))) where assocify is the slet->let function from my previous post. - chris