From 683416a2c5b0e9aa70a6b545ca2db718ee328fc0 Mon Sep 17 00:00:00 2001 From: Anton Leherbauer Date: Thu, 20 Aug 2009 09:44:20 +0000 Subject: Bug 283082 - Add / to operator rule --- .../src/org/eclipse/cdt/internal/ui/text/COperatorRule.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/COperatorRule.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/COperatorRule.java index b54509e37e0..a3701c6a2f9 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/COperatorRule.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/COperatorRule.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2005 QNX Software Systems and others. + * Copyright (c) 2005, 2009 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 == '/'; } } -- cgit v1.2.3