From: fred Date: Sun, 24 Mar 2002 20:01:57 +0000 (+0000) Subject: lilypond-0.1.36 X-Git-Tag: release/1.5.59~3635 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=34ef0111fcc92e1a444112d2c24667345e904700;p=lilypond.git lilypond-0.1.36 --- diff --git a/Documentation/literature.pod b/Documentation/literature.pod index 6564ebbea8..9e8f12f4b2 100644 --- a/Documentation/literature.pod +++ b/Documentation/literature.pod @@ -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 diff --git a/lily/include/item.hh b/lily/include/item.hh index 524c6772e1..df5b6757ec 100644 --- a/lily/include/item.hh +++ b/lily/include/item.hh @@ -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; diff --git a/lily/item.cc b/lily/item.cc index 21c96bc273..daaf880a96 100644 --- a/lily/item.cc +++ b/lily/item.cc @@ -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;