This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 198970 - Non-ASCII arrow sign shown incorrectly
Summary: Non-ASCII arrow sign shown incorrectly
Status: NEW
Alias: None
Product: contrib
Classification: Unclassified
Component: Scala (show other bugs)
Version: 7.0
Hardware: PC Windows 7 x64
: P3 normal (vote)
Assignee: _ dcaoyuan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-05-28 11:45 UTC by josko
Modified: 2011-05-28 11:45 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description josko 2011-05-28 11:45:36 UTC
Scala version 2.8.1

The arrow operator for Pairs (UTF8:%E2%86%92) from file Predef.scala (line 172) is shown incorrectly. It looks like it is interpreted as 8859-1 or similar.

Line 170-173:
  final class ArrowAssoc[A](val x: A) {
    @inline def -> [B](y: B): Tuple2[A, B] = Tuple2(x, y)
    def →[B](y: B): Tuple2[A, B] = ->(y)
  }