Sophie

Sophie

distrib > Mandriva > 2007.1 > x86_64 > by-pkgid > 64e1fd21a0651746bcc1fee7e3ad093a > files > 2

eclipse-cdt-3.1.2-2.2mdv2007.1.src.rpm

--- ./com.redhat.eclipse.cdt.autotools/src/com/redhat/eclipse/cdt/autotools/ui/editors/AutoconfIdentifierRule.java.orig	2007-03-11 18:10:58.000000000 +0100
+++ ./com.redhat.eclipse.cdt.autotools/src/com/redhat/eclipse/cdt/autotools/ui/editors/AutoconfIdentifierRule.java	2007-03-11 18:13:16.000000000 +0100
@@ -42,10 +42,10 @@
 	 */
 	public IToken evaluate(ICharacterScanner scanner, boolean resume) {
 		int c = scanner.read();
-		if (Character.isLetterOrDigit(c) || fExtraChars.indexOf((char)c) >= 0) {
+		if (Character.isLetterOrDigit((char)c) || fExtraChars.indexOf((char)c) >= 0) {
 			do {
 				c = scanner.read();
-			} while (Character.isLetterOrDigit(c) || fExtraChars.indexOf((char)c) >= 0);
+			} while (Character.isLetterOrDigit((char)c) || fExtraChars.indexOf((char)c) >= 0);
 			scanner.unread();
 			return fToken;
 		}