[need a function for css-inlining Alan-Shields@omrf.ouhsc.edu**20051115235233 If you have code that needs to inline CSS across an array, it's difficult to use the current macro. Having a function helps - mapping the macro to the function only completes things. ] { hunk ./css.lisp 38 -(defmacro css-inline (&rest propvals) - (string-join (loop for propval on propvals by #'cddr +(defun css-inline-func (proplist) + (string-join (loop for propval on proplist by #'cddr hunk ./css.lisp 42 + +(defmacro css-inline (&rest propvals) + `(js::css-inline-func ,propvals)) }