summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/CompilerCommand.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-03-13 17:44:52 +0000
committerPaul Phillips <paulp@improving.org>2009-03-13 17:44:52 +0000
commit1a1c5f5503761fde6918e0f5c81571cb09768561 (patch)
treed573dd279b14e43e67a6689bc3cca0beafb60108 /src/compiler/scala/tools/nsc/CompilerCommand.scala
parenta7ea09750252edb05465232db0ee2e4ed8ac4039 (diff)
downloadscala-1a1c5f5503761fde6918e0f5c81571cb09768561.tar.gz
scala-1a1c5f5503761fde6918e0f5c81571cb09768561.tar.bz2
scala-1a1c5f5503761fde6918e0f5c81571cb09768561.zip
fix for a typo which had disabled -Xshow-phases.
Diffstat (limited to 'src/compiler/scala/tools/nsc/CompilerCommand.scala')
-rw-r--r--src/compiler/scala/tools/nsc/CompilerCommand.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/CompilerCommand.scala b/src/compiler/scala/tools/nsc/CompilerCommand.scala
index ea0aa5f969..b2cd7e5206 100644
--- a/src/compiler/scala/tools/nsc/CompilerCommand.scala
+++ b/src/compiler/scala/tools/nsc/CompilerCommand.scala
@@ -63,7 +63,7 @@ class CompilerCommand(
(settings.Xhelp.value _, _ => xusageMsg),
(settings.Yhelp.value _, _ => yusageMsg),
(settings.showPlugins.value _, _.pluginDescriptions),
- (settings.showPlugins.value _, _.phaseDescriptions)
+ (settings.showPhases.value _, _.phaseDescriptions)
)
def shouldStopWithInfo: Boolean = stopSettings exists { _._1() }