search for: d1689e1

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

Did you mean: 16891
2016 Feb 03
1
[PATCH] generator: simplify generated code for always-available features
Just refer to the dummy function directly, instead of using #define's. --- generator/daemon.ml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/generator/daemon.ml b/generator/daemon.ml index 7ffea7b..d1689e1 100644 --- a/generator/daemon.ml +++ b/generator/daemon.ml @@ -732,19 +732,15 @@ and generate_daemon_optgroups_c () = pr " return 1;\n"; pr "}\n"; pr "\n"; - - List.iter ( - fun group -> - pr "#define optgroup_%s_available dummy_a...
2016 Feb 23
7
[PATCH 0/4] Various tweaks to the generator.
Use interfaces files (*.mli files) instead of exporting all symbols randomly. Change the 'file is generated' warnings at the top of generated files so they accurately describe which source file generates each output file. Rich.