1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

bug 406596: Makefile editor won't highlight conditional variable assignment

This commit is contained in:
Andrew Gvozdev 2013-04-25 14:11:34 -04:00
parent 495b294449
commit 08a62c3e85

View file

@ -65,7 +65,7 @@ class MacroDefinitionRule implements IPredicateRule {
case END_VAR_STATE :
if (c != '\n' && Character.isWhitespace((char) c)) {
state = END_VAR_STATE;
} else if (c == ':' || c == '+') {
} else if (c == ':' || c == '+' || c == '?') {
state = EQUAL_STATE;
} else if (c == '=') {
state = FINISH_STATE;