From d216410f22baea73617c5781ba3c8b0f84b048d4 Mon Sep 17 00:00:00 2001 From: fred Date: Sat, 30 Nov 1996 11:54:25 +0000 Subject: [PATCH] lilypond-0.0.13 --- src/main.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main.cc b/src/main.cc index 8e499b0204..35f20603ba 100644 --- a/src/main.cc +++ b/src/main.cc @@ -11,6 +11,7 @@ long_option_init theopts[] = { 1, "output", 'o', 0, "warranty", 'w', 0, "help", 'h', + 0, "debug", 'd', 0,0,0 }; @@ -20,7 +21,10 @@ help() cout << "--help, -h This help\n" "--warranty, -w show warranty & copyright\n" - "--output, -o set default output\n"; + "--output, -o set default output\n" + "--debug, -d enable debug output\n" + ; + } void notice() { @@ -64,6 +68,9 @@ main (int argc, char **argv) help(); exit(0); break; + case 'd': + set_debug(true); + break; default: assert(false); break; -- 2.39.5