diff --git a/src/cc65/codeseg.c b/src/cc65/codeseg.c index 5949c0c6f..e621147ab 100644 --- a/src/cc65/codeseg.c +++ b/src/cc65/codeseg.c @@ -399,10 +399,7 @@ static CodeEntry* ParseInsn (CodeSeg* S, LineInfo* LI, const char* L) default: /* Absolute, maybe indexed */ - L = ReadToken (L, ", ", Arg, sizeof (Arg)); - if (*L == ' ') { - L = SkipSpace (L+1); - } + L = ReadToken (L, ",", Arg, sizeof (Arg)); if (*L == '\0') { /* Absolute, zeropage or branch */ if ((OPC->Info & OF_BRA) != 0) {