static L simpleSpaces2(L tok) { tok = cloneList(tok); for (int i = 0; i < l(tok); i += 2) tok.set(i, tok.get(i).replaceAll("\\s+", " ")); ret tok; }