]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.31
authorfred <fred>
Sun, 24 Mar 2002 19:31:30 +0000 (19:31 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:31:30 +0000 (19:31 +0000)
TODO
src/score.cc

diff --git a/TODO b/TODO
index 44068657a7177b73dced4765fdae983dc282031c..ab8df4498746cc5a1ed66dbc9ce0114dfd2caeed 100644 (file)
--- a/TODO
+++ b/TODO
@@ -26,6 +26,8 @@ INPUTLANGUAGE
 
 SMALLISH PROJECTS
 
+       * read from mmap directly: study yy_scan_buffer
+
        * binsearch for notenames
 
        * stafftypes: voice names/ instrument names.
@@ -65,6 +67,8 @@ DOC
 
        * all errors
 
+       * a decent webpage
+
 FUTURE
 
        * warning: beam(): Beam too narrow: beam gen not per stem
@@ -121,4 +125,4 @@ IDEAS
 
        * PostScript output (esp. Beams, Slurs, etc)
 
-       * caching breakpoints
\ No newline at end of file
+       * caching breakpoints\r
index ab9a9d9a93d374718b565365ac7e3c0755e0c4e2..1adcf7dd057837c04ff8cc92b397c3bec00ee25a 100644 (file)
@@ -4,7 +4,7 @@
 #include "pscore.hh"
 #include "staff.hh"
 #include "debug.hh"
-#include "paper.hh"
+#include "paperdef.hh"
 #include "main.hh"
 #include "source.hh"
 #include "sourcefile.hh"
@@ -39,13 +39,15 @@ Score::process()
     pscore_p_->process();    
 }
 
-// remove empty cols.
+/**
+  Remove empty cols, preprocess other columns.
+  */
 void
 Score::clean_cols()
-{    
+{
     for (iter_top(staffs_,i); i.ok(); i++)
        i->clean_cols();
-    
+
     for (iter_top(cols_,c); c.ok(); ) {
        if (!c->pcol_l_->used()) {
            delete c.get();
@@ -55,7 +57,8 @@ Score::clean_cols()
        }
     }
 }
-/*
+
+/**
   this sux.  We should have Score_column create the appropriate PCol.
   Unfortunately, PCols don't know about their position.    
   */