summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-02-04 15:14:16 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-02-04 15:14:16 +0000
commit11297162d14b5491869d51e33f1ce85e54c487dc (patch)
treeae79123e2418832a9360c3307be3cbf34c3eb773 /src
parentd02988125b66f07f938324eaf83e9540713a2552 (diff)
downloadscala-11297162d14b5491869d51e33f1ce85e54c487dc.tar.gz
scala-11297162d14b5491869d51e33f1ce85e54c487dc.tar.bz2
scala-11297162d14b5491869d51e33f1ce85e54c487dc.zip
Arrays (and probably other things) pretty-print...
Arrays (and probably other things) pretty-print properly now.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/Interpreter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Interpreter.scala b/src/compiler/scala/tools/nsc/Interpreter.scala
index 46420c4b6d..907344d352 100644
--- a/src/compiler/scala/tools/nsc/Interpreter.scala
+++ b/src/compiler/scala/tools/nsc/Interpreter.scala
@@ -711,7 +711,7 @@ class Interpreter(val settings: Settings, out: PrintWriter) {
fullPath(vname) +
".toString.contains('\\n')) " +
" \"\\n\" else \"\") + " +
- fullPath(vname) + " + \"\\n\") else \"null\\n\") ")
+ fullPath(vname) + ".toString + \"\\n\") else \"null\\n\") ")
}
}