Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2285)

Side by Side Diff: scm/define-music-types.scm

Issue 6730044: Issue 2445: Add measure counter to LilyPond Base URL: http://git.savannah.gnu.org/gitweb/?p=lilypond.git/trunk/
Patch Set: fixes based on David's review Created 12 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 ;;;; This file is part of LilyPond, the GNU music typesetter. 1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;; 2 ;;;;
3 ;;;; Copyright (C) 1998--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> 3 ;;;; Copyright (C) 1998--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 ;;;; Jan Nieuwenhuizen <janneke@gnu.org> 4 ;;;; Jan Nieuwenhuizen <janneke@gnu.org>
5 ;;;; 5 ;;;;
6 ;;;; LilyPond is free software: you can redistribute it and/or modify 6 ;;;; LilyPond is free software: you can redistribute it and/or modify
7 ;;;; it under the terms of the GNU General Public License as published by 7 ;;;; it under the terms of the GNU General Public License as published by
8 ;;;; the Free Software Foundation, either version 3 of the License, or 8 ;;;; the Free Software Foundation, either version 3 of the License, or
9 ;;;; (at your option) any later version. 9 ;;;; (at your option) any later version.
10 ;;;; 10 ;;;;
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 302
303 (MarkEvent 303 (MarkEvent
304 . ((description . "Insert a rehearsal mark. 304 . ((description . "Insert a rehearsal mark.
305 305
306 Syntax: @code{\\mark} @var{marker} 306 Syntax: @code{\\mark} @var{marker}
307 307
308 Example: @code{\\mark \"A\"}") 308 Example: @code{\\mark \"A\"}")
309 (types . (general-music mark-event event)) 309 (types . (general-music mark-event event))
310 )) 310 ))
311 311
312 (MeasureCounterEvent
313 . ((description . "Used to signal the start and end of a measure count.")
314 (types . (general-music measure-counter-event span-event event))
315 ))
316
312 (MultiMeasureRestEvent 317 (MultiMeasureRestEvent
313 . ((description . "Used internally by @code{MultiMeasureRestMusic} 318 . ((description . "Used internally by @code{MultiMeasureRestMusic}
314 to signal rests.") 319 to signal rests.")
315 (types . (general-music event rhythmic-event 320 (types . (general-music event rhythmic-event
316 multi-measure-rest-event)) 321 multi-measure-rest-event))
317 )) 322 ))
318 323
319 (MultiMeasureRestMusic 324 (MultiMeasureRestMusic
320 . ((description . "Rests that may be compressed into Multi rests. 325 . ((description . "Rests that may be compressed into Multi rests.
321 326
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 ("unfold" . UnfoldedRepeatedMusic) 786 ("unfold" . UnfoldedRepeatedMusic)
782 ("percent" . PercentRepeatedMusic) 787 ("percent" . PercentRepeatedMusic)
783 ("tremolo" . TremoloRepeatedMusic)))) 788 ("tremolo" . TremoloRepeatedMusic))))
784 (repeated-music-name (if repeated-music 789 (repeated-music-name (if repeated-music
785 repeated-music 790 repeated-music
786 (begin 791 (begin
787 (ly:warning (_ "unknown repeat type `~S'") n ame) 792 (ly:warning (_ "unknown repeat type `~S'") n ame)
788 (ly:warning (_ "See define-music-types.scm f or supported repeats")) 793 (ly:warning (_ "See define-music-types.scm f or supported repeats"))
789 'VoltaRepeatedMusic)))) 794 'VoltaRepeatedMusic))))
790 (make-music repeated-music-name))) 795 (make-music repeated-music-name)))
OLDNEW
« ly/engraver-init.ly ('K') | « scm/define-grobs.scm ('k') | scm/lily.scm » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b