SVN commit 634930 by porten: oops! wrong brace position. M +2 -2 lexer.cpp --- branches/KDE/3.5/kdelibs/kjs/lexer.cpp #634929:634930 @@ -561,8 +561,8 @@ // Same for building an array with function pointers ( 'name', func1, 'name2', func2 ) // There are lots of other uses, we really have to get this into the grammar if ( token == FUNCTION && - ( lastToken == '=' || lastToken == ',' || lastToken == '(' ) || - lastToken == RETURN ) + ( lastToken == '=' || lastToken == ',' || lastToken == '(' || + lastToken == RETURN ) ) convertNextIdentifier = true; if (token == CONTINUE || token == BREAK ||