I have an environment that I've defined as follows:
\newenvironment{regularEnumerateEx}[2][0em]
{begin{listSkeleton}[#1]{enumerate}{#2}}
{\end{listSkeleton}}
The problem is that I need to expand #2 before passing it to listSkeleton. It's okay if #1 is expanded (I think). I know I have to use \expandafter in some way, but not exactly how.