1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00

Fixed last fix

git-svn-id: svn://svn.cc65.org/cc65/trunk@1905 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-01-20 05:56:48 +00:00
parent b6c4ff2e01
commit 66f6093ae2

View File

@ -617,7 +617,7 @@ static void StartExpClassic (Macro* M)
/* Read tokens for one parameter, accept empty params */
Last = 0;
while (!TokIsSep (Tok)) {
while (Tok != TOK_COMMA && Tok != TOK_SEP) {
TokNode* T;