X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FPackerRun.vala;h=ee3c97d1c2524215afc58a576a554d510eb2e165;hb=b85554bcc3d6985efcf6691a161dea7c85d9d81b;hp=9adc6075e0ddd8fda47c4a352f7b6c079ae172d8;hpb=37d98e5fa56706321ff4ee788e9274204781f06e;p=gnome.introspection-doc-generator diff --git a/JSDOC/PackerRun.vala b/JSDOC/PackerRun.vala index 9adc607..ee3c97d 100644 --- a/JSDOC/PackerRun.vala +++ b/JSDOC/PackerRun.vala @@ -20,7 +20,7 @@ namespace JSDOC [CCode (array_length = false, array_null_terminated = true)] private static string[]? opt_files_from = null; public static bool opt_debug = false; - + public static bool opt_keep_whitespace = false; const OptionEntry[] options = { @@ -31,7 +31,7 @@ namespace JSDOC { "tmpdir", 'm', 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null }, { "index-files", 'i', 0, OptionArg.FILENAME_ARRAY, ref opt_files_from ,"files that contain listing of files to compile", null }, - + { "keep-whitespace", 'w', 0, OptionArg.NONE, ref opt_keep_whitespace, "Keep whitespace", null }, { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null }, // fixme -- keepwhite.. cleanup @@ -91,8 +91,11 @@ namespace JSDOC // now run the Packer... var p = new Packer(opt_target, opt_debug_target); + p.keepWhite = opt_keep_whitespace; + + if (opt_files != null) { - GLib.debug("Adding File %s", string.join(", ",opt_files)); + foreach (string f in opt_files) { GLib.debug("Adding File %s", f); p.loadFile(f);