]> git.donarmstrong.com Git - lilypond.git/commitdiff
* make/mutopia-rules.make ($(outdir)/%.png $(outdir)/%.pdf $(outdir)/%.ly $(outdir...
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 16 Jun 2005 11:13:02 +0000 (11:13 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 16 Jun 2005 11:13:02 +0000 (11:13 +0000)
* ly/engraver-init.ly: make Staff default child of ChoirStaff.

ChangeLog
lily/program-option.cc
ly/engraver-init.ly
make/mutopia-rules.make

index 25f496be91c7529b102477a24608ab34d99b960f..44af8dd80810319909b6f79d51ff62fd66b4a274 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-06-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * make/mutopia-rules.make ($(outdir)/%.png $(outdir)/%.pdf $(outdir)/%.ly $(outdir)/%.ps): 
+
+       * ly/engraver-init.ly: make Staff default child of ChoirStaff.
+
 2005-06-16  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * ChangeLog: Recode utf-8.
@@ -11,6 +17,8 @@
 
 2005-06-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * make/mutopia-rules.make: switch off ps, p&c for lilypond runs.
+       
        * scm/framework-ps.scm (write-preamble): remove status check.
 
        * Documentation/user/invoking.itely (Updating files with
index de2065041d50776e5b50a9407cf0c2e74e3697d4..552987904bcddd015d3d2b581dd6b7d6ebd0eb77 100644 (file)
@@ -71,6 +71,9 @@ const int HELP_INDENT = 30;
 const int INDENT = 2; 
 const int SEPARATION = 5; 
 
+/*
+  Hmmm. should do in SCM / C++  ?
+ */
 static String
 get_help_string ()
 {
@@ -78,7 +81,8 @@ get_help_string ()
   SCM convertor = ly_lily_module_constant ("scm->string");
   
   
-  String help ("Options supported by ly:set-option\n\n");
+  Array<String> opts;
+  
   for (SCM s = alist; scm_is_pair (s); s = scm_cdr (s))
     {
       SCM sym = scm_caar (s);
@@ -105,9 +109,14 @@ get_help_string ()
                           String ("\n")
                           + String_convert::char_string (' ', HELP_INDENT));
       
-      help += opt_spec + opt_help + "\n";
+      opts.push (opt_spec + opt_help + "\n");
     }
-  
+
+  String help ("Options supported by ly:set-option\n\n");
+  opts.sort (String::compare);
+  for (int  i = 0; i < opts.size (); i++)
+    help += opts[i];
+    
   help += String ("\n");
   return help;
 }
index 73afe8ccf2b09c88d4656a4740fc70599ea5debf..50d042bc480427ba191440c93fdba8c7b3011bd3 100644 (file)
   \InnerChoirStaff
   \name ChoirStaff
   
-  \defaultchild "InnerChoirStaff"
+  \defaultchild "Staff"
   \accepts "InnerChoirStaff"
   \accepts "InnerStaffGroup"
   \description "Identical to @code{StaffGroup} except that the
index b914429ea0c4cfd30f2c5f83d832e8bcfe5a686e..a4c287cb82c2f452dfe06c8f6b2ab512639e736d 100644 (file)
@@ -15,7 +15,7 @@ $(outdir)/%.ly: %.abc
 
 # hmm. notdir builds srcdir builds? 
 $(outdir)/%.png $(outdir)/%.pdf $(outdir)/%.ly $(outdir)/%.ps: $(outdir)/%.ly
-       cd $(outdir); $(LILYPOND) --pdf --ps --png -I $(shell pwd)/ $(notdir $<)
+       cd $(outdir); $(LILYPOND) --pdf --png -ddelete-intermediate-files -dno-point-and-click -I $(shell pwd)/ $(notdir $<)
        touch $(outdir)/$(basename $(notdir $<)).png
 
 $(outdir)/%.ly: %.ly