src/Tools/Metis/src/Options.sml
changeset 39353 7f11d833d65b
parent 25430 372d6749f00e
parent 39349 2d0a4361c3ef
child 39443 e330437cd22a
--- a/src/Tools/Metis/src/Options.sml	Mon Sep 13 16:44:20 2010 +0200
+++ b/src/Tools/Metis/src/Options.sml	Mon Sep 13 21:24:10 2010 +0200
@@ -1,6 +1,6 @@
 (* ========================================================================= *)
 (* PROCESSING COMMAND LINE OPTIONS                                           *)
-(* Copyright (c) 2003-2004 Joe Hurd, distributed under the BSD License *)
+(* Copyright (c) 2003-2004 Joe Hurd, distributed under the BSD License       *)
 (* ========================================================================= *)
 
 structure Options :> Options =
@@ -116,9 +116,10 @@
     description = "no more options",
     processor = fn _ => raise Fail "basicOptions: --"},
    {switches = ["-?","-h","--help"], arguments = [],
-    description = "display all options and exit",
+    description = "display option information and exit",
     processor = fn _ => raise OptionExit
-    {message = SOME "displaying all options", usage = true, success = true}},
+    {message = SOME "displaying option information",
+     usage = true, success = true}},
    {switches = ["-v", "--version"], arguments = [],
     description = "display version information",
     processor = fn _ => raise Fail "basicOptions: -v, --version"}];
@@ -127,8 +128,9 @@
 (* All the command line options of a program                                 *)
 (* ------------------------------------------------------------------------- *)
 
-type allOptions = {name : string, version : string, header : string,
-                   footer : string, options : opt list};
+type allOptions =
+     {name : string, version : string, header : string,
+      footer : string, options : opt list};
 
 (* ------------------------------------------------------------------------- *)
 (* Usage information                                                         *)