mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
bug 406911: GNU Makefile editor does not highlight built-in function "filter-out" correctly.
This commit is contained in:
parent
7ff04d5d8d
commit
548b84cb35
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ public class FunctionReferenceRule extends WordRule {
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public boolean isWordPart(char c) {
|
public boolean isWordPart(char c) {
|
||||||
return !isClosedBracket && (c == '(' || Character.isJavaIdentifierPart(c));
|
return !isClosedBracket && (c == '(' || Character.isJavaIdentifierPart(c) || c == '-');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue