Along the same lines, the following

\version "1.7.1"
g2. \f \spanrequest \start "text" g8 \spanrequest \stop "text" \fz r |

is converted by convert-ly -t1.9.0 into
\version "1.9.0"

g2. -\f #(ly:export (make-span-event 'TextSpanEvent START) g8) #(ly:export (make-span-event 'TextSpanEvent STOP)) \fz r |

Ideally, it should be converted into

g2. \f \startTextSpan g8 \stopTextSpan \fz r |

but that might be too much to demand from our poor conversion utility.

/Mats


Erik Sandberg wrote:
Hi,

This doesn't qualify as a necessary bugfix for 2.2, since it occured in 2.0 already. But anyways:

When converting from 1.8 to 1.9, with the new markup syntax, there is a problem with parentheses. The following:

\version "1.8.0"
\score {
\notes {a4_#'(italic "Simile") c}
}

is translated to:

\version "1.9.0"
\score {
\notes {a4_#'(italic "Simile" c)}
}

It might be too much to demand that convert-ly should upgrade
#'(italic "Simile")
to \markup {\italic { "Simile" }}
, but the movement of a parenthesis movement is IMHO a clear bug, as opposed to a limitation.


erik



_______________________________________________
Bug-lilypond mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-lilypond

-- ============================================= Mats Bengtsson Signal Processing Signals, Sensors and Systems Royal Institute of Technology SE-100 44 STOCKHOLM Sweden Phone: (+46) 8 790 8463 Fax: (+46) 8 790 7260 Email: [EMAIL PROTECTED] WWW: http://www.s3.kth.se/~mabe =============================================


_______________________________________________ Bug-lilypond mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to