search for: 2a1aef4

Displaying 2 results from an estimated 2 matches for "2a1aef4".

Did you mean: 2a1aef4c8
2016 Jul 18
0
[PATCH 3/3] builder: improve the handling of list formats
...elete_on_failure : bool; format : string option; gpg : string; - list_format : [`Short|`Long|`Json]; + list_format : List_entries.format; memsize : int option; network : bool; ops : Customize_cmdline.ops; diff --git a/builder/list_entries.ml b/builder/list_entries.ml index 2f053e8..2a1aef4 100644 --- a/builder/list_entries.ml +++ b/builder/list_entries.ml @@ -21,11 +21,24 @@ open Common_utils open Printf +type format = + | Short + | Long + | Json + +let list_formats = [ "short"; "long"; "json" ] + +let list_format_of_string = function + | "...
2016 Jul 18
4
[PATCH 1/3] mllib: Getopt: point to man page as additional help
On error, point also to the man page of the current tool in addition to '$TOOL --help'. --- mllib/getopt-c.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mllib/getopt-c.c b/mllib/getopt-c.c index bf40f91..3efd5d3 100644 --- a/mllib/getopt-c.c +++ b/mllib/getopt-c.c @@ -69,8 +69,8 @@ cleanup_option_list (void *ptr) static void __attribute__((noreturn))