summaryrefslogtreecommitdiff
path: root/test/files/run/lisp.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/lisp.scala')
-rw-r--r--test/files/run/lisp.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/lisp.scala b/test/files/run/lisp.scala
index 014990fc37..fe3941d0db 100644
--- a/test/files/run/lisp.scala
+++ b/test/files/run/lisp.scala
@@ -332,7 +332,7 @@ object LispAny extends Lisp {
val result = eval1(x, env);
if (trace) {
indent -= 1;
- for (val x <- range(1, indent)) Console.print(" ");
+ for (x <- range(1, indent)) Console.print(" ");
Console.println("<=== " + result);
}
curexp = prevexp;