From e73ce61377783a1494be7a748693457656826d95 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 30 Nov 2009 15:14:11 +0000 Subject: Fix for #2736 (scanner not advancing on unicode... Fix for #2736 (scanner not advancing on unicode identifier.) --- src/compiler/scala/tools/nsc/ast/parser/Scanners.scala | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/compiler/scala/tools/nsc/ast/parser/Scanners.scala b/src/compiler/scala/tools/nsc/ast/parser/Scanners.scala index 9648735a15..06e9e687b3 100644 --- a/src/compiler/scala/tools/nsc/ast/parser/Scanners.scala +++ b/src/compiler/scala/tools/nsc/ast/parser/Scanners.scala @@ -383,6 +383,7 @@ trait Scanners { getIdentRest() } else if (isSpecial(ch)) { putChar(ch) + nextChar() getOperatorRest() } else { syntaxError("illegal character") -- cgit v1.2.3