You can do this (destructively) by doing: A=foreach(mapcan sublist A sublist) You can do it non-destructively (if each sublist only has a single element) by doing: foreach(mapcar sublist A car(sublist)) Regards, Andrew.
↧