summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-07-02 20:50:14 +0000
committerPaul Phillips <paulp@improving.org>2010-07-02 20:50:14 +0000
commit78b419c329996995ba26b269583f8b375e3bfe8c (patch)
treecb90df9f7e3a711d9ac793bd37d3960c076b047d
parent4dd14ec6f68a10792be348520cf8c078c2e2bc80 (diff)
downloadscala-78b419c329996995ba26b269583f8b375e3bfe8c.tar.gz
scala-78b419c329996995ba26b269583f8b375e3bfe8c.tar.bz2
scala-78b419c329996995ba26b269583f8b375e3bfe8c.zip
A cosmetic change which serves to document that...
A cosmetic change which serves to document that sourcepath can in fact accept a path. No test because I can't figure out how to make partest see the srcdirs. Closes #2202, no review.
-rw-r--r--src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala b/src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala
index 12ae5c9d0e..dcefd8bb16 100644
--- a/src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala
+++ b/src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala
@@ -24,7 +24,7 @@ trait StandardScalaSettings {
val extdirs = PathSetting ("-extdirs", "dirs", "Override location of installed extensions", Defaults.scalaExtDirs)
val javabootclasspath = PathSetting ("-javabootclasspath", "path", "Override java boot classpath.", Defaults.javaBootClassPath)
val javaextdirs = PathSetting ("-javaextdirs", "path", "Override java extdirs classpath.", Defaults.javaExtDirs)
- val sourcepath = StringSetting ("-sourcepath", "path", "Specify where to find input source files", "")
+ val sourcepath = PathSetting ("-sourcepath", "path", "Specify where to find input source files", "") // Defaults.scalaSourcePath
/** Other settings.
*/