]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.35
authorfred <fred>
Tue, 26 Mar 2002 21:47:56 +0000 (21:47 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:47:56 +0000 (21:47 +0000)
Documentation/faq.yo
lily/midi-item.cc

index a7694846c98ee9d32c09e0541943fcb49a9b25de..b7278b52063cf49996b31937ec891a75ba2cae70 100644 (file)
@@ -22,6 +22,14 @@ It does em(not) work with windows 3.x; you need Windows-NT (95/98?).  This
 is not a recommendation, however.  We recommend you use Unix, in
 particular, use GNU/Linux.  For further information see file(README-W32).
 
+question(Where is guile-config)
+
+RedHat RPMS don't include guile-config.  You need guile-config as it
+was produced during the RPM build run.  Build the RPM from source
+(file(.src.rpm)), and use the guile-config that is in
+file(/usr/src/redhat/BUILD/guile-1.3/guile-config/).
+
+
 question(I get all kinds of errors while  compiling file(parser.cc))
 
 LilyPond uses features of bison version 1.25. Please confirm that
index a753b7cc9f4317e9134ff5410c3b31ba2fad4735..9d09226f7e1826071e56559a44ce32af298b3e8a 100644 (file)
@@ -425,11 +425,7 @@ Midi_note::str () const
   String str = to_str ((char)status_byte);
   str += to_str ((char) (pitch_i () + c0_pitch_i_c_));
 
-#if 0
-  // poor man's staff dynamics:
-  str += to_str ((char) (dynamic_byte_ - 0x10 * channel_i_));
-#endif
-  
+  str += to_str ((char)dynamic_byte_);
   return str;
 }