]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.36
authorfred <fred>
Sun, 24 Mar 2002 20:01:57 +0000 (20:01 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:01:57 +0000 (20:01 +0000)
Documentation/literature.pod
lily/include/item.hh
lily/item.cc

index 6564ebbea8667c029d583d75f51148930a4785cd..9e8f12f4b2882e5cf222d7e66e1381e3d85c43b2 100644 (file)
@@ -29,9 +29,10 @@ Association of the United States Inc., 1993.
 Ted Ross. ``Teach yourself the art of music engraving and processing''
 (3rd edition). Hansen House, Miami Beach, FLorida.
 
-[This is about engraving, i.e. the real thing with metal plates, but
-it also contains directions on good typesetting. It includes some good
-spacing tables HWN]
+[This is about engraving, i.e. the real thing with metal plates.  It
+contains directions on good typesetting, but the sections reproduction
+technicalities and history are interesting.  Especially the section on
+Music Typewriters is amusing HWN]
 
 Gardner Read. ``Modern Rhythmic Notation.'' Indiana University Press,
 1978.
@@ -61,8 +62,8 @@ D. Roush. ``Music Formatting Guidelines,'' Technical Report
 OSU-CISRC-3/88-TR10, Department of Computer and Information Science,
 The Ohio State University, 1988.
 
-[Rules on formatting music formulated for use in computers. Mainly distilled
-from  [Ross] HWN]
+[Rules on formatting music formulated for use in computers. Mainly
+distilled from [Ross] HWN]
 
 
 =head2 Notation with computers
index 524c6772e1bf248d1ffb9f9f25b723289c477430..df5b6757ec1383895b5d957f5dc140105262e3de 100644 (file)
@@ -32,6 +32,8 @@ public:
   /// should be put in a breakable col.
   bool breakable_b_;
   int break_status_i_;
+  int break_priority_i_;
+  
   /// nobreak = 0, pre = -1, post = 1
   int break_status_i() const;
   Item * find_prebroken_piece (int) const;
index 21c96bc27397d7c3d823b631628c0ed7e83c8291..daaf880a96abd8b5df2add34fdef3f979637af09 100644 (file)
@@ -15,6 +15,7 @@
 
 Item::Item()
 {
+  break_priority_i_ = 0;
   breakable_b_ = false;
   break_status_i_ = 0;
   broken_to_drul_[LEFT] = broken_to_drul_[RIGHT]=0;