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:
parent
495b294449
commit
08a62c3e85
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue