MIDI: fix regtest failure
[lilypond/patrick.git] / input / regression / markup-eps.ly
blob224af32c2484c9cd3bfbab8c33fe597228d22b39
1 \header {
3 texidoc = "The epsfile markup command reads an EPS file"
6 \version "2.12.0"
8 #(let* ((port (open-output-file "box.eps")))
10 (display "%!PS-Adobe-3.0 EPSF-3.0
11 %%BoundingBox: 5 5 105 105
12 10 setlinewidth 10 10 moveto 0 90 rlineto 90 0 rlineto 0 -90 rlineto
13 closepath stroke" port)
15 (close port))
17 { c''4-\markup { \box \epsfile #X #10 #"box.eps" } }