summaryrefslogtreecommitdiff
path: root/src/manual
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-07-17 12:48:14 +0000
committermichelou <michelou@epfl.ch>2006-07-17 12:48:14 +0000
commit3a0c15973d7e5e25c7fff451aa18363bcb3bdcba (patch)
tree0aa1430386570db5906c8a1abbfc07239faa4b30 /src/manual
parenta39f873983ee688c2f098d2dad3139017ab02832 (diff)
downloadscala-3a0c15973d7e5e25c7fff451aa18363bcb3bdcba.tar.gz
scala-3a0c15973d7e5e25c7fff451aa18363bcb3bdcba.tar.bz2
scala-3a0c15973d7e5e25c7fff451aa18363bcb3bdcba.zip
completed fsc options in man pages
Diffstat (limited to 'src/manual')
-rw-r--r--src/manual/scala/man1/fsc.scala19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/manual/scala/man1/fsc.scala b/src/manual/scala/man1/fsc.scala
index 0b87cea5eb..a1393102c7 100644
--- a/src/manual/scala/man1/fsc.scala
+++ b/src/manual/scala/man1/fsc.scala
@@ -13,7 +13,7 @@ object fsc extends Command {
val name = Section("NAME",
- MBold(command) & " " & NDash & " Offline compiler for the " &
+ MBold(command) & " " & NDash & " Fast offline compiler for the " &
Link("Scala 2", "http://scala.epfl.ch/") & " language")
val synopsis = Section("SYNOPSIS",
@@ -33,8 +33,13 @@ object fsc extends Command {
"as its source file. You can specify a separate destination directory " &
"with -d (see " & Link(Bold("OPTIONS"), "#options") & ", below).")
- val options =
+ val options = Section("OPTIONS",
+
Section("Standard Options",
+ "The offline compiler has the same set of " & Link(Bold("Standard Options"),
+ "scalac#standard_options") & " as the " & MBold("scalac") & " commands " &
+ "with the following additional options:",
+
DefinitionList(
Definition(
CmdOption("reset"),
@@ -50,6 +55,16 @@ object fsc extends Command {
Definition(
CmdOption("J", Argument("flag")),
"Pass <flag> directly to runtime system (not yet implemented)")
+ )),
+
+ Section("Non-Standard Options",
+ "See the " & Link(Bold("Non-Standard Options"), "scalac.html#non-standard_options") &
+ " of the " & MBold("scalac") & " command."
+ ),
+
+ Section("Debug Options",
+ "See the " & Link(Bold("Debug Options"), "scalac.html#debug_options") &
+ " of the " & MBold("scalac") & " command."
))
val environment = Section("ENVIRONMENT",