search for: 73020d5

Displaying 2 results from an estimated 2 matches for "73020d5".

Did you mean: 370205
2016 Jul 11
2
[PATCH v2] OCaml tools: add and use a Getopt module
...quot;) prog in - Arg.parse argspec anon_fun usage_msg; + Getopt.parse argspec usage_msg; if not !format_consumed then error (f_"--format parameter must appear before -a parameter"); diff --git a/sysprep/sysprep_operation.ml b/sysprep/sysprep_operation.ml index 73020d5..c5d8e77 100644 --- a/sysprep/sysprep_operation.ml +++ b/sysprep/sysprep_operation.ml @@ -49,7 +49,7 @@ type operation = { perform_on_devices : device_side_effects callback option; } and extra_arg = { - extra_argspec : Arg.key * Arg.spec * Arg.doc; + extra_argspec : Getopt.keys * Getopt.spec...
2016 Jul 13
3
[PATCH v3 1/2] OCaml tools: add and use a Getopt module
...usage_msg; + let opthandle = create_standard_options args usage_msg in + Getopt.parse opthandle; if not !format_consumed then error (f_"--format parameter must appear before -a parameter"); diff --git a/sysprep/sysprep_operation.ml b/sysprep/sysprep_operation.ml index 73020d5..b4d650f 100644 --- a/sysprep/sysprep_operation.ml +++ b/sysprep/sysprep_operation.ml @@ -49,7 +49,7 @@ type operation = { perform_on_devices : device_side_effects callback option; } and extra_arg = { - extra_argspec : Arg.key * Arg.spec * Arg.doc; + extra_argspec : Getopt.keys * Getopt.spec...