]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/main.cc
* stepmake/aclocal.m4 (STEPMAKE_KPATHSEA): Do not include
[lilypond.git] / lily / main.cc
index 52e2c277109888f3e56e58d5ce765d7dafd37e0e..291a9c8cc9ddaedcbe9d43d7d1ed048dfe952c5e 100644 (file)
 
 #include "all-font-metrics.hh"
 #include "file-name.hh"
+#include "freetype.hh"
 #include "getopt-long.hh"
 #include "global-ctor.hh"
-#include "kpath.hh"
 #include "lily-guile.hh"
 #include "lily-version.hh"
-#include "version.hh"
 #include "misc.hh"
 #include "output-def.hh"
-#include "warn.hh"
-#include "freetype.hh"
 #include "string-convert.hh"
+#include "version.hh"
+#include "warn.hh"
 
 /*
  * Global options that can be overridden through command line.
@@ -437,7 +436,7 @@ add_output_format (String format)
 static void
 parse_argv (int argc, char **argv)
 {
-  bool help_b = false;
+  bool show_help = false;
   option_parser = new Getopt_long (argc, argv, options_static);
   while (Long_option_init const *opt = (*option_parser) ())
     {
@@ -499,7 +498,7 @@ parse_argv (int argc, char **argv)
          init_name_global = option_parser->optional_argument_str0_;
          break;
        case 'h':
-         help_b = true;
+         show_help = true;
          break;
        case 'V':
          be_verbose_global = true;
@@ -518,7 +517,7 @@ parse_argv (int argc, char **argv)
        }
     }
 
-  if (help_b)
+  if (show_help)
     {
       identify (stdout);
       usage ();