summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McDirmid <sean.mcdirmid@gmail.com>2006-08-21 13:04:31 +0000
committerSean McDirmid <sean.mcdirmid@gmail.com>2006-08-21 13:04:31 +0000
commit8d9a6bb9b20bad77ee9b2a89ecea8fbee83743b6 (patch)
tree13bd374453385f59fa616ea85b654a2051c4b077
parent5a90f0aebdaab1bea251887c70a615181b03b885 (diff)
downloadscala-8d9a6bb9b20bad77ee9b2a89ecea8fbee83743b6.tar.gz
scala-8d9a6bb9b20bad77ee9b2a89ecea8fbee83743b6.tar.bz2
scala-8d9a6bb9b20bad77ee9b2a89ecea8fbee83743b6.zip
making -g:vars the default.
-rw-r--r--src/compiler/scala/tools/nsc/Settings.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Settings.scala b/src/compiler/scala/tools/nsc/Settings.scala
index 84ef4a0ffd..7881b33608 100644
--- a/src/compiler/scala/tools/nsc/Settings.scala
+++ b/src/compiler/scala/tools/nsc/Settings.scala
@@ -74,7 +74,7 @@ class Settings(error: String => unit) {
private val documenttitleDefault = "Scala 2"
val doc = BooleanSetting("-doc", "Generate documentation");
- val debuginfo = new DebugSetting("-g", "Generate debugging info", List("none", "source", "line", "vars", "notc"), "line", "vars")
+ val debuginfo = new DebugSetting("-g", "Generate debugging info", List("none", "source", "line", "vars", "notc"), "vars", "vars")
val nowarnings = BooleanSetting("-nowarn", "Generate no warnings")
val noassertions = BooleanSetting("-noassert", "Generate no assertions and assumptions")
val verbose = BooleanSetting("-verbose", "Output messages about what the compiler is doing")