From: hanwen Date: Thu, 9 Mar 2006 15:37:40 +0000 (+0000) Subject: * Documentation/user/invoking.itely: add note about MacOS X scripts. X-Git-Tag: release/2.7.38~8 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=dc4ea73c7ae06eb9fbf581f31de453629b2ac79c;p=lilypond.git * Documentation/user/invoking.itely: add note about MacOS X scripts. * scripts/convert-ly.py (do_options): don't print help for --show-rules rule. --- diff --git a/ChangeLog b/ChangeLog index 4d5bda3378..0e27e41a9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2006-03-09 Han-Wen Nienhuys + * Documentation/user/invoking.itely: add note about MacOS X scripts. + + * scripts/convert-ly.py (do_options): don't print help for + --show-rules rule. + * tex/texinfo.tex: patch texinfo.tex to leave single quotes in @code and @example. Update from texinfo.tex from CVS. diff --git a/Documentation/user/invoking.itely b/Documentation/user/invoking.itely index eb28a41526..82e9cefdb7 100644 --- a/Documentation/user/invoking.itely +++ b/Documentation/user/invoking.itely @@ -7,6 +7,7 @@ This chapter details the technicalities of running LilyPond. @menu * Invoking lilypond:: +* Notes for the MacOS X app:: * Error messages:: * Updating files with convert-ly:: * Reporting bugs:: @@ -300,6 +301,17 @@ uses more CPU time. The default value is @code{70}. @end table +@node Notes for the MacOS X app +@section Notes for the MacOS X app + +The scripts (such as lilypond-book, convert-ly, abc2ly, etc.) are also +included inside MacOS X .app. They can be run from the command line by +invoking them directly, e.g. + +@example +@var{path/to}/LilyPond.app/Contents/Resources/bin/convert-ly +@end example + @node Error messages @section Error messages diff --git a/scripts/convert-ly.py b/scripts/convert-ly.py index 149b913041..5e63396afb 100644 --- a/scripts/convert-ly.py +++ b/scripts/convert-ly.py @@ -110,6 +110,7 @@ def get_option_parser (): p.add_option ("-s", '--show-rules', help=_('print rules [default: --from=0, --to=@TOPLEVEL_VERSION@]'), + dest='show_rules', action='store_true', default=False) p.add_option ('-t', '--to', @@ -265,7 +266,7 @@ def do_options (): global global_options global_options = options - if not args: + if not args and not options.show_rules: opt_parser.print_help () sys.exit (2)