Hi Dan,
2008/10/1 Dan Eble <[EMAIL PROTECTED]>:
> The "0/0" message occurs in 2.11.59, but not in 2.11.58.
> -- Dan
This looks like a string conversion failure following the update of
the rational code to 64 bit (implemented in 2.11.59).
Here's the code from flower/string_convert.cc (which was already present):
84 string
85 String_convert::i64_string (I64 i64, char const *fmt)
86 {
87 char buffer[STRING_BUFFER_LEN];
88 snprintf (buffer, STRING_BUFFER_LEN,
89 (fmt ? fmt : "%Ld"), i64); // assume radix 10
90 return string (buffer);
91 }
Regards,
Neil
_______________________________________________
lilypond-devel mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-devel