search for: d1b4763b8

Displaying 4 results from an estimated 4 matches for "d1b4763b8".

2017 Mar 31
0
[PATCH 1/3] perl: Add =encoding to Sys::Guestfs man page.
...in print at /usr/share/perl5/vendor_perl/Test2/Formatter/TAP.pm line 112. t/910-pod.t ................ Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests --- generator/perl.ml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/generator/perl.ml b/generator/perl.ml index 3a87f1634..d1b4763b8 100644 --- a/generator/perl.ml +++ b/generator/perl.ml @@ -664,6 +664,8 @@ and generate_perl_pm () = generate_header HashStyle LGPLv2plus; pr "\ +=encoding utf8 + =pod =head1 NAME -- 2.12.0
2017 Mar 31
6
[PATCH 0/3] Fix some quoting issues.
Fix some quoting issues by introducing Unicode quotes. Note this intentionally only affects end-user messages and documentation. Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...- | Pointer _ | GUID _ -> () - | StringList n | DeviceList n | FilenameList n -> + | Pointer _ -> () + | StringList (_, n) -> pr " free (%s);\n" n ) args; List.iter ( diff --git a/generator/perl.ml b/generator/perl.ml index d1b4763b8..beb6bab5a 100644 --- a/generator/perl.ml +++ b/generator/perl.ml @@ -356,9 +356,7 @@ PREINIT: iteri ( fun i -> function - | Pathname n | Device n | Mountable n - | Dev_or_Path n | Mountable_or_Path n | String n - | FileIn n | FileOut n | Key...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.