Heaven/TQA #1 Posted December 29, 2012 Jac! is it a bug that the MADS standard fast repeat is treated like a label? e.g. :200 .byte $0f the 200 will be a label in the label table and is shown in the window? Quote Share this post Link to post Share on other sites
+JAC! #2 Posted December 29, 2012 Everything start starts at column 0 is considered a label at the moment for the speed of the parser. But with the identifier detection of 1.6.3, it should be easy to enhance, so it is ignore because it starts with a character that is not allowed in identifiers. Quote Share this post Link to post Share on other sites
+JAC! #3 Posted December 29, 2012 Fixed in DEV. There will be new release with many fixes soon. Coding RGBA was a good test :-) OLD: if (compilerSyntax.isIdentifierCharacter(ch)) { NEW: if (symbolBuffer.length() == 0 && compilerSyntax.isIdentifierStartCharacter(ch) || symbolBuffer.length() > 0 && compilerSyntax.isIdentifierPartCharacter(ch)) { Quote Share this post Link to post Share on other sites
Heaven/TQA #4 Posted December 29, 2012 ah... I was not at 1.6.3... need to check my other installations. Quote Share this post Link to post Share on other sites