Delta Between Two Patch Sets: input/regression/measure-counter-broken.ly
Issue 6730044 :
Issue 2445: Add measure counter to LilyPond
Left Patch Set: revert addition to Staff context
Right Patch Set: fixes based on David's review
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
input/regression/measure-counter.ly
input/regression/measure-counter-broken.ly
ly/engraver-init.ly
ly/spanners-init.ly
scm/define-event-classes.scm
scm/define-grob-interfaces.scm
scm/define-grob-properties.scm
scm/define-grobs.scm
scm/define-music-types.scm
scm/lily.scm
scm/music-functions.scm
scm/scheme-engravers.scm
LEFT RIGHT
1 \version "2.17. 5 " 1 \version "2.17. 6 "
2 2
3 \header { 3 \header {
4 texidoc = "Measures split across line breaks may be numbered in a measure 4 texidoc = "Measures split across line breaks may be numbered in a measure
5 count. Each segment receives a number. The first number has its ordinary 5 count. Each segment receives a number. The first number has its ordinary
6 appearance, but numbers after the break are enclosed in parentheses." 6 appearance, but numbers after the break are enclosed in parentheses."
7 } 7 }
8 8
9 \layout { 9 \layout {
10 indent = 0 10 indent = 0
11 ragged-right = ##t 11 ragged-right = ##t
12 } 12 }
13 13
14 \relative c' { 14 \relative c' {
15 \startMeasureCount 15 \startMeasureCount
16 a4 b c d 16 a4 b c d
17 a4 b 17 a4 b
18 \bar "" 18 \bar ""
19 \break 19 \break
20 c4 d 20 c4 d
21 a4 b c d 21 a4 b c d
22 \stopMeasureCount 22 \stopMeasureCount
23 } 23 }
24 24
25 \layout { 25 \layout {
26 \context { 26 \context {
27 \Staff 27 \Staff
28 \consists #Measure_counter_engraver 28 \consists #Measure_counter_engraver
29 } 29 }
30 } 30 }
LEFT RIGHT