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

Bug 291756 - Comma and question mark are not highlighted

This commit is contained in:
Anton Leherbauer 2010-04-29 07:33:09 +00:00
parent 875dfaf63c
commit 7ea9474e1b

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2005, 2009 QNX Software Systems and others.
* Copyright (c) 2005, 2010 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -37,6 +37,6 @@ public class COperatorRule extends SingleCharRule
return (ch == ';' || ch == '.' || ch == ':' || ch == '=' || ch == '-'
|| ch == '+' || ch == '\\' || ch == '*' || ch == '!' || ch == '%'
|| ch == '^' || ch == '&' || ch == '~' || ch == '>' || ch == '<')
|| ch == '|' || ch == '/';
|| ch == '|' || ch == '/' || ch == '?' || ch == ',';
}
}