Possible Duplicate:
Flatten a list using only the forms in “The Little Schemer”
I simply want to turn '(a b (c d) e) into '(a b c d e) (i.e., insert each member of the inner list into the outer list, while maintaining the order of the elements).
There has to be a simple way to do this, but it eludes me for some reason.