1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Fix asm code scanner

This commit is contained in:
Anton Leherbauer 2007-11-08 15:26:10 +00:00
parent b9f77afe5d
commit 9eba2e3e79

View file

@ -95,6 +95,7 @@ public final class AsmCodeScanner extends AbstractCScanner {
WordRule wordRule= new WordRule(new AsmWordDetector('.'), other);
for (int i=0; i<keywords.length; i++)
wordRule.addWord(keywords[i], token);
rules.add(wordRule);
// TODO use extra color?
token= getToken(ICColorConstants.C_KEYWORD);