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

Issue 6635050: Make arguments like Context.GrobName accessible as symbol lists (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 6 months ago by dak
Modified:
11 years, 6 months ago
Reviewers:
Keith, janek, wl, lemzwerg, t.daniels
CC:
lilypond-devel_gnu.org
Base URL:
http://git.savannah.gnu.org/gitweb/?p=lilypond.git/trunk/
Visibility:
Public.

Description

Make arguments like Context.GrobName accessible as symbol lists This is a rather awkward case for a Rietveld review since it consists of 20 separate commits (listed below). The principal target was to allow things like \omit Staff.TimeSignature to work as expected. The same treatment has been given to \alterBroken, \hide, \overrideProperty and \shape, as well as to \accidentalStyle, and \footnote has had its interface overhauled (at the current point of time, the German documentation is in pre-2.16 state and the invalid uses of \footnote trigger errors after conversion). For improving backward compatibility, dotted _LilyPond_ strings like "Staff.TimeSignature" are also accepted in lieu of symbol list. A rather surprising corollary is that \override Lyrics.LyricText #'font-shape = #'italic now works without needing to offset . with spaces. While Lyrics.LyricText is indeed run into a single LilyPond string in this case, \override will happily pick that string apart again. LilyPond strings are also acceptable for symbol? predicates. The conversions will only be attempted if the string is not accepted by a predicate in the form of a string. This iteration of the code allows \override and \revert to understand dotted notation even when there is a dot between grob specification and grob property path, like with \override Accidental.color = #red The following commits are involved: Bump version for checking purposes Run scripts/auxiliar/update-with-convert-ly.sh Add more extensive rules for \tweak, \override, \revert, \overrideProperty Change \footnote user interface and behavior to match \hide/\omit etc. This does the following changes to the footnote user interface for footnotes in music rather than in markups: Time-based footnote syntax: \footnote [mark] offset #'Grob text \default -> \footnote [mark] offset text [ Context. ] Grob Like with any override, you now need to specify Context if it is not supposed to be Bottom, like with Staff.TimeSignature. Music-based footnote syntax: \footnote [mark] offset text music -> stays identical \footnote [mark] offset #'Grob text music -> \single\footnote [mark] offset text Grob music Specifying Context.Grob is possible, but Context gets ignored. Let \overrideProperty accept nested properties Change \tweak syntax to symbol syntax Instead of \tweak #'color, \tweak color is used. Instead of \tweak Accidental #'color, \tweak Accidental.color is used. convert-ly rule for \alterbroken, \accidentalStyle, \overrideProperty This is required since not all of the old call forms can be automatically recognized anymore, in particular not when the Scheme-only form #"Context.GrobName" is being used. Change \accidentalStyle to get a symbol list as argument This changes the syntax of \accidentalStyle to accept specs like Voice.piano-cautionary . Make \alterBroken, \hide, \omit, \overrideProperty, \shape take unquoted Context.Grob specs This changes the syntax of the named commands to accept Voice.Accidental and similar specifications without any quoting. Replace the rather fuzzy list-or-symbol? with symbol-list-or-symbol? list-or-symbol? was previously used in the meaning of symbol-list-or-symbol? only, and there is no point in not checking the list members for actually being symbols, in order to avoid ugly surprises later. Add symbol-list-or-music? predicate This is of interest for commands like \hide which accept either music (to see an override) or a grob specification like Accidental or Voice.Accidental. Allow the string "xxx.yyy" to parse as a symbol list This changes the parser to let xxx.yyy be a valid way of specifying a function argument required to be #'(xxx yyy). Allow property and grob paths to be constructed from strings This allows use of either \override Accidental color = #red or \override Accidental.color = #red (in addition to existing forms), both for context modifications or for property overrides in music, the latter with optional leading context spec defaulting to Bottom. . The same holds for reverts. Add symbol-list? predicate Allow LilyPond strings to stand in for symbols when parsing Bare words and quote-enclosed words meeting word syntax can now be used when a function argument expects to see a symbol. Let \accidentalStyle detect its optional context argument by looking at its letter case This is a fishy stopgap measure to let \accidentalStyle able to distinguish #'Voice "default" from "default" alone while we generate symbols from from #'Voice as well as "default". If the first letter is uppercase, the symbol is considered to be a context specification. Factor SCM_IDENTIFIER out from embedded_scm_arg* SCM_IDENTIFIER indicates "active Scheme" introduced with $ that is subject to copying and reinterpretation. While the parser had its own *_IDENTIFIER category for everything interpreted specially, the fallback SCM_IDENTIFIER itself never needed special or different treatment from material generated with # (SCM_TOKEN). As the various *_IDENTIFIER types are faded out, this is changing. As a consequence, SCM_IDENTIFIER no longer shares the non-terminals with other Scheme-type definitions. parser.yy: make is_regular_identifier match the lexer definition is_regular_identifier checks now for valid identifiers employing the definition of words that is also used in the lexer: letters, and characters outside of the ASCII range, interspersed with single - and _ characters. parser.yy: FRACTION does not require a closed expression before it FRACTION items can't trail any other valid expression without separating '*' or similar, so the argument list before them does not need to be of "closed" type. Assignments can't contain literal lyric music (wrong lexer mode) Since assignments can't happen in lyrics mode (only in INITIAL mode or the initial music mode), there is no point in supporting non-mode-switching items on the right side of assignments that can only occur in lyrics mode.

Patch Set 1 #

Total comments: 1

Patch Set 2 : unquote \accidentalStyle parameters, make and use symbol-list-or-symbol?, some amendments #

Total comments: 2

Patch Set 3 : Fix a few bugs, modify \tweak syntax, demonstrate high impact conversion #

Patch Set 4 : Change \footnote user interface to match the rest (though pre-2.16 German docs fail) #

Total comments: 4

Patch Set 5 : Allow \override Accidental.color = #red (dot between grob and property) #

Unified diffs Side-by-side diffs Delta from patch set Stats (+7568 lines, -7346 lines) Patch
M Documentation/cs/learning/fundamental.itely View 1 2 3 4 8 chunks +10 lines, -12 lines 0 comments Download
M Documentation/cs/learning/tweaks.itely View 1 2 3 4 76 chunks +136 lines, -139 lines 0 comments Download
M Documentation/cs/usage/running.itely View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M Documentation/de/essay/engraving.itely View 1 2 3 4 17 chunks +36 lines, -36 lines 0 comments Download
Documentation/de/extending/programming-interface.itely View 1 2 3 4 11 chunks +18 lines, -18 lines 0 comments Download
M Documentation/de/extending/scheme-tutorial.itely View 1 2 3 4 6 chunks +6 lines, -6 lines 0 comments Download
M Documentation/de/learning/fundamental.itely View 1 2 3 4 8 chunks +10 lines, -12 lines 0 comments Download
M Documentation/de/learning/tweaks.itely View 1 2 3 4 75 chunks +135 lines, -138 lines 0 comments Download
M Documentation/de/notation/ancient.itely View 1 2 3 4 35 chunks +104 lines, -104 lines 0 comments Download
M Documentation/de/notation/changing-defaults.itely View 1 2 3 4 66 chunks +124 lines, -129 lines 0 comments Download
M Documentation/de/notation/cheatsheet.itely View 1 2 3 4 5 chunks +5 lines, -5 lines 0 comments Download
M Documentation/de/notation/chords.itely View 1 2 3 4 6 chunks +6 lines, -6 lines 0 comments Download
M Documentation/de/notation/editorial.itely View 1 2 3 4 5 chunks +16 lines, -16 lines 0 comments Download
M Documentation/de/notation/expressive.itely View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/de/notation/fretted-strings.itely View 1 2 3 4 8 chunks +8 lines, -10 lines 0 comments Download
M Documentation/de/notation/input.itely View 1 2 3 4 7 chunks +38 lines, -38 lines 0 comments Download
Documentation/de/notation/keyboards.itely View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
Documentation/de/notation/percussion.itely View 1 2 3 4 11 chunks +39 lines, -39 lines 0 comments Download
M Documentation/de/notation/pitches.itely View 1 2 3 4 24 chunks +44 lines, -44 lines 0 comments Download
M Documentation/de/notation/rhythms.itely View 1 2 3 4 7 chunks +14 lines, -14 lines 0 comments Download
M Documentation/de/notation/simultaneous.itely View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M Documentation/de/notation/spacing.itely View 1 2 3 4 32 chunks +85 lines, -90 lines 0 comments Download
M Documentation/de/notation/staff.itely View 1 2 3 4 13 chunks +23 lines, -23 lines 0 comments Download
M Documentation/de/notation/text.itely View 1 2 3 4 6 chunks +10 lines, -10 lines 0 comments Download
M Documentation/de/notation/vocal.itely View 1 2 3 4 14 chunks +24 lines, -25 lines 0 comments Download
M Documentation/de/usage/running.itely View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M Documentation/es/essay/engraving.itely View 1 2 3 4 17 chunks +36 lines, -36 lines 0 comments Download
M Documentation/es/extending/programming-interface.itely View 1 2 3 4 10 chunks +17 lines, -17 lines 0 comments Download
M Documentation/es/extending/scheme-tutorial.itely View 1 2 3 4 6 chunks +6 lines, -7 lines 0 comments Download
M Documentation/es/learning/fundamental.itely View 1 2 3 4 8 chunks +12 lines, -14 lines 0 comments Download
M Documentation/es/learning/tweaks.itely View 1 2 3 4 76 chunks +137 lines, -140 lines 0 comments Download
M Documentation/es/notation/ancient.itely View 1 2 3 4 39 chunks +111 lines, -112 lines 0 comments Download
M Documentation/es/notation/changing-defaults.itely View 1 2 3 4 74 chunks +134 lines, -139 lines 0 comments Download
M Documentation/es/notation/cheatsheet.itely View 1 2 3 4 5 chunks +5 lines, -5 lines 0 comments Download
M Documentation/es/notation/chords.itely View 1 2 3 4 6 chunks +6 lines, -6 lines 0 comments Download
M Documentation/es/notation/editorial.itely View 1 2 3 4 5 chunks +16 lines, -16 lines 0 comments Download
M Documentation/es/notation/expressive.itely View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/es/notation/fretted-strings.itely View 1 2 3 4 8 chunks +8 lines, -10 lines 0 comments Download
M Documentation/es/notation/input.itely View 1 2 3 4 5 chunks +14 lines, -14 lines 0 comments Download
M Documentation/es/notation/keyboards.itely View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/es/notation/percussion.itely View 1 2 3 4 11 chunks +39 lines, -39 lines 0 comments Download
M Documentation/es/notation/pitches.itely View 1 2 3 4 25 chunks +45 lines, -45 lines 0 comments Download
M Documentation/es/notation/rhythms.itely View 1 2 3 4 7 chunks +14 lines, -14 lines 0 comments Download
M Documentation/es/notation/simultaneous.itely View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M Documentation/es/notation/spacing.itely View 1 2 3 4 36 chunks +90 lines, -95 lines 0 comments Download
M Documentation/es/notation/staff.itely View 1 2 3 4 14 chunks +24 lines, -24 lines 0 comments Download
M Documentation/es/notation/text.itely View 1 2 3 4 6 chunks +10 lines, -10 lines 0 comments Download
M Documentation/es/notation/vocal.itely View 1 2 3 4 16 chunks +27 lines, -28 lines 0 comments Download
M Documentation/es/usage/running.itely View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M Documentation/essay/engraving.itely View 1 2 3 4 17 chunks +36 lines, -36 lines 0 comments Download
M Documentation/extending/programming-interface.itely View 1 2 3 4 11 chunks +18 lines, -18 lines 0 comments Download
M Documentation/extending/scheme-tutorial.itely View 1 2 3 4 6 chunks +6 lines, -6 lines 0 comments Download
M Documentation/fr/essay/engraving.itely View 1 2 3 4 17 chunks +36 lines, -36 lines 0 comments Download
M Documentation/fr/extending/programming-interface.itely View 1 2 3 4 11 chunks +18 lines, -18 lines 0 comments Download
Documentation/fr/extending/scheme-tutorial.itely View 1 2 3 4 6 chunks +6 lines, -6 lines 0 comments Download
M Documentation/fr/learning/fundamental.itely View 1 2 3 4 8 chunks +12 lines, -14 lines 0 comments Download
M Documentation/fr/learning/tweaks.itely View 1 2 3 4 76 chunks +137 lines, -140 lines 0 comments Download
M Documentation/fr/notation/ancient.itely View 1 2 3 4 39 chunks +111 lines, -111 lines 0 comments Download
M Documentation/fr/notation/changing-defaults.itely View 1 2 3 4 73 chunks +132 lines, -137 lines 0 comments Download
M Documentation/fr/notation/cheatsheet.itely View 1 2 3 4 5 chunks +5 lines, -5 lines 0 comments Download
M Documentation/fr/notation/chords.itely View 1 2 3 4 6 chunks +6 lines, -6 lines 0 comments Download
Documentation/fr/notation/editorial.itely View 1 2 3 4 5 chunks +16 lines, -16 lines 0 comments Download
M Documentation/fr/notation/expressive.itely View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
Documentation/fr/notation/fretted-strings.itely View 1 2 3 4 8 chunks +8 lines, -10 lines 0 comments Download
M Documentation/fr/notation/input.itely View 1 2 3 4 4 chunks +13 lines, -13 lines 0 comments Download
M Documentation/fr/notation/keyboards.itely View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/fr/notation/percussion.itely View 1 2 3 4 11 chunks +39 lines, -39 lines 0 comments Download
M Documentation/fr/notation/pitches.itely View 1 2 3 4 24 chunks +44 lines, -44 lines 0 comments Download
M Documentation/fr/notation/rhythms.itely View 1 2 3 4 7 chunks +14 lines, -14 lines 0 comments Download
M Documentation/fr/notation/simultaneous.itely View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M Documentation/fr/notation/spacing.itely View 1 2 3 4 36 chunks +90 lines, -93 lines 0 comments Download
M Documentation/fr/notation/staff.itely View 1 2 3 4 14 chunks +24 lines, -24 lines 0 comments Download
M Documentation/fr/notation/text.itely View 1 2 3 4 6 chunks +10 lines, -10 lines 0 comments Download
M Documentation/fr/notation/vocal.itely View 1 2 3 4 16 chunks +27 lines, -28 lines 0 comments Download
M Documentation/fr/usage/running.itely View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M Documentation/hu/learning/fundamental.itely View 1 2 3 4 6 chunks +8 lines, -8 lines 0 comments Download
M Documentation/hu/learning/tweaks.itely View 1 2 3 4 3 chunks +6 lines, -6 lines 0 comments Download
M Documentation/hu/usage/running.itely View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/included/display-predefined-string-tunings.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/included/gonville.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/included/note-head-style.ly View 1 2 3 4 3 chunks +17 lines, -17 lines 0 comments Download
M Documentation/included/script-chart.ly View 1 2 3 4 2 chunks +8 lines, -8 lines 0 comments Download
M Documentation/it/learning/fundamental.itely View 1 2 3 4 8 chunks +12 lines, -14 lines 0 comments Download
M Documentation/it/notation/pitches.itely View 1 2 3 4 24 chunks +44 lines, -44 lines 0 comments Download
M Documentation/it/usage/running.itely View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M Documentation/ja/learning/fundamental.itely View 1 2 3 4 8 chunks +12 lines, -14 lines 0 comments Download
M Documentation/ja/learning/tweaks.itely View 1 2 3 4 76 chunks +137 lines, -140 lines 0 comments Download
M Documentation/ja/notation/changing-defaults.itely View 1 2 3 4 73 chunks +134 lines, -139 lines 0 comments Download
M Documentation/ja/notation/cheatsheet.itely View 1 2 3 4 5 chunks +5 lines, -5 lines 0 comments Download
M Documentation/ja/notation/chords.itely View 1 2 3 4 6 chunks +6 lines, -6 lines 0 comments Download
M Documentation/ja/notation/editorial.itely View 1 2 3 4 5 chunks +16 lines, -16 lines 0 comments Download
M Documentation/ja/notation/expressive.itely View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/ja/notation/fretted-strings.itely View 1 2 3 4 8 chunks +8 lines, -10 lines 0 comments Download
M Documentation/ja/notation/input.itely View 1 2 3 4 5 chunks +14 lines, -14 lines 0 comments Download
M Documentation/ja/notation/keyboards.itely View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
Documentation/ja/notation/percussion.itely View 1 2 3 4 11 chunks +39 lines, -39 lines 0 comments Download
M Documentation/ja/notation/pitches.itely View 1 2 3 4 24 chunks +44 lines, -44 lines 0 comments Download
M Documentation/ja/notation/rhythms.itely View 1 2 3 4 7 chunks +14 lines, -14 lines 0 comments Download
M Documentation/ja/notation/simultaneous.itely View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M Documentation/ja/notation/spacing.itely View 1 2 3 4 36 chunks +90 lines, -95 lines 0 comments Download
M Documentation/ja/notation/staff.itely View 1 2 3 4 14 chunks +24 lines, -24 lines 0 comments Download
M Documentation/ja/notation/text.itely View 1 2 3 4 6 chunks +10 lines, -10 lines 0 comments Download
M Documentation/ja/notation/vocal.itely View 1 2 3 4 16 chunks +27 lines, -28 lines 0 comments Download
M Documentation/ja/usage/running.itely View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M Documentation/learning/fundamental.itely View 1 2 3 4 8 chunks +12 lines, -14 lines 0 comments Download
M Documentation/learning/tweaks.itely View 1 2 3 4 76 chunks +137 lines, -140 lines 0 comments Download
M Documentation/ly-examples/aucun-snippet.ly View 1 2 3 4 7 chunks +20 lines, -20 lines 0 comments Download
Documentation/ly-examples/bach-bwv610.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/ly-examples/bach-schenker.ly View 1 2 3 4 6 chunks +115 lines, -118 lines 0 comments Download
M Documentation/ly-examples/cary.ly View 1 2 3 4 6 chunks +50 lines, -50 lines 0 comments Download
M Documentation/ly-examples/cary-layout.ily View 1 2 3 4 4 chunks +13 lines, -13 lines 0 comments Download
M Documentation/ly-examples/granados.ly View 1 2 3 4 7 chunks +21 lines, -21 lines 0 comments Download
M Documentation/ly-examples/orchestra.ly View 1 2 3 4 4 chunks +14 lines, -14 lines 0 comments Download
M Documentation/ly-examples/tab-example.ly View 1 2 3 4 3 chunks +10 lines, -10 lines 0 comments Download
M Documentation/nl/learning/fundamental.itely View 1 2 3 4 8 chunks +10 lines, -12 lines 0 comments Download
Documentation/notation/ancient.itely View 1 2 3 4 39 chunks +111 lines, -112 lines 0 comments Download
M Documentation/notation/changing-defaults.itely View 1 2 3 4 73 chunks +135 lines, -139 lines 0 comments Download
M Documentation/notation/cheatsheet.itely View 1 2 3 4 5 chunks +5 lines, -5 lines 0 comments Download
M Documentation/notation/chords.itely View 1 2 3 4 6 chunks +6 lines, -6 lines 0 comments Download
M Documentation/notation/editorial.itely View 1 2 3 4 5 chunks +16 lines, -16 lines 0 comments Download
M Documentation/notation/expressive.itely View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/notation/fretted-strings.itely View 1 2 3 4 8 chunks +8 lines, -10 lines 0 comments Download
M Documentation/notation/input.itely View 1 2 3 4 5 chunks +10 lines, -10 lines 0 comments Download
M Documentation/notation/keyboards.itely View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/notation/percussion.itely View 1 2 3 4 11 chunks +39 lines, -39 lines 0 comments Download
Documentation/notation/pitches.itely View 1 2 3 4 25 chunks +47 lines, -47 lines 0 comments Download
M Documentation/notation/rhythms.itely View 1 2 3 4 7 chunks +14 lines, -14 lines 0 comments Download
M Documentation/notation/simultaneous.itely View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M Documentation/notation/spacing.itely View 1 2 3 4 36 chunks +90 lines, -95 lines 0 comments Download
M Documentation/notation/staff.itely View 1 2 3 4 14 chunks +24 lines, -24 lines 0 comments Download
M Documentation/notation/text.itely View 1 2 3 4 6 chunks +10 lines, -10 lines 0 comments Download
M Documentation/notation/vocal.itely View 1 2 3 4 16 chunks +27 lines, -28 lines 0 comments Download
Documentation/snippets/adding-a-figured-bass-above-or-below-the-notes.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/adding-ambitus-per-voice.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/adding-an-extra-staff.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/adding-bar-lines-to-chordnames-context.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/adding-drum-parts.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/adding-indicators-to-staves-which-get-split-after-a-break.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/adding-orchestral-cues-to-a-vocal-score.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/adding-timing-marks-to-long-glissandi.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/adjusting-grace-note-spacing.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/adjusting-lyrics-vertical-spacing.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/adjusting-the-shape-of-falls-and-doits.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/aligning-and-centering-instrument-names.ly View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/aligning-bar-numbers.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/aligning-marks-with-various-notation-objects.ly View 1 2 3 4 4 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/aligning-objects-created-with-the--mark-command.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/altering-the-length-of-beamed-stems.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/alternative-breve-note.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/analysis-brackets-above-the-staff.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/ancient-fonts.ly View 1 2 3 4 6 chunks +40 lines, -40 lines 0 comments Download
M Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/ancient-notation-template----modern-transcription-of-mensural-music.ly View 1 2 3 4 10 chunks +17 lines, -17 lines 0 comments Download
M Documentation/snippets/ancient-time-signatures.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/anglican-psalm-template.ly View 1 2 3 4 2 chunks +2 lines, -3 lines 0 comments Download
M Documentation/snippets/arabic-improvisation.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/asymmetric-slurs.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/avoiding-collisions-with-chord-fingerings.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/bar-chords-notation-for-guitar--with-text-spanner.ly View 1 2 3 4 3 chunks +8 lines, -8 lines 0 comments Download
M Documentation/snippets/beams-across-line-breaks.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/breathing-signs.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
Documentation/snippets/broken-crescendo-hairpin.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/caesura-railtracks-with-fermata.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/center-text-below-hairpin-dynamics.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/centering-markup-on-note-heads-automatically.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/changing-beam-knee-gap.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/changing-form-of-multi-measure-rests.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/changing-fret-orientations.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/changing-stanza-fonts.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/changing-text-and-spanner-styles-for-text-dynamics.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/changing-the-ambitus-gap.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/changing-the-breath-mark-symbol.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/changing-the-number-of-lines-in-a-staff.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/changing-the-staff-size.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/changing-the-tuplet-number.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/chant-or-psalms-notation.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/chords-headword.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/coloring-notes-depending-on-their-pitch.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/combining-two-parts-on-the-same-staff.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/compound-time-signatures.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/consistently-left-aligned-bar-numbers.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
Documentation/snippets/contemporary-glissando.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/controlling-spanner-visibility-after-a-line-break.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/controlling-the-vertical-ordering-of-scripts.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/controlling-tuplet-bracket-visibility.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/creating-a-delayed-turn.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/creating-double-digit-fingerings.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/creating-simultaneous-rehearsal-marks.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/creating-text-spanners.ly View 1 2 3 4 2 chunks +12 lines, -13 lines 0 comments Download
M Documentation/snippets/cross-staff-chords---beaming-problems-workaround.ly View 1 2 3 4 3 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/custodes.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/customizing-fretboard-fret-diagrams.ly View 1 2 3 4 2 chunks +18 lines, -33 lines 0 comments Download
M Documentation/snippets/customizing-markup-fret-diagrams.ly View 1 2 3 4 2 chunks +4 lines, -6 lines 0 comments Download
M Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/defining-predefined-fretboards-for-other-instruments.ly View 1 2 3 4 3 chunks +3 lines, -5 lines 0 comments Download
M Documentation/snippets/display-bracket-with-only-one-staff-in-a-system.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
Documentation/snippets/displaying-complex-chords.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/displaying-grob-ancestry.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/drawing-boxes-around-grobs.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/drawing-circles-around-note-heads.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/drawing-circles-around-various-objects.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/editorial-headword.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/engraving-ties-manually.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/engraving-tremolos-with-floating-beams.ly View 1 2 3 4 2 chunks +9 lines, -9 lines 0 comments Download
M Documentation/snippets/expressive-headword.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/figured-bass-headword.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/fine-tuning-pedal-brackets.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/fingering-symbols-for-wind-instruments.ly View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/flamenco-notation.ly View 1 2 3 4 4 chunks +15 lines, -15 lines 0 comments Download
M Documentation/snippets/flute-slap-notation.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/forcing-horizontal-shift-of-notes.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/forcing-hyphens-to-be-shown.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/forcing-measure-width-to-adapt-to-metronomemarks-width.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/fret-diagrams-explained-and-developed.ly View 1 2 3 4 4 chunks +6 lines, -9 lines 0 comments Download
M Documentation/snippets/fretted-headword.ly View 1 2 3 4 4 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/fretted-string-harmonics-in-tablature.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/generating-custom-flags.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/glissandi-can-skip-grobs.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/grid-lines--changing-their-appearance.ly View 1 2 3 4 3 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly View 1 2 3 4 4 chunks +11 lines, -11 lines 0 comments Download
M Documentation/snippets/guitar-slides.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/hairpins-with-different-line-styles.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/heavily-customized-polymetric-time-signatures.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/horizontally-aligning-custom-dynamics-e.g.-sempre-pp,-piu-f,-subito-p.ly View 1 2 3 4 4 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/how-to-change-fret-diagram-position.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-1.ly View 1 2 3 4 2 chunks +8 lines, -8 lines 0 comments Download
M Documentation/snippets/how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-2.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/incipit.ly View 1 2 3 4 10 chunks +14 lines, -15 lines 0 comments Download
M Documentation/snippets/indicating-cross-staff-chords-with-arpeggio-bracket.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/inserting-a-caesura.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/jazz-combo-template.ly View 1 2 3 4 3 chunks +11 lines, -11 lines 0 comments Download
M Documentation/snippets/keep-change-clefs-full-sized.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
Documentation/snippets/keyboard-headword.ly View 1 2 3 4 4 chunks +9 lines, -9 lines 0 comments Download
M Documentation/snippets/laissez-vibrer-ties.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/line-arrows.ly View 1 2 3 4 2 chunks +14 lines, -14 lines 0 comments Download
M Documentation/snippets/lyrics-alignment.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/making-an-object-invisible-with-the-transparent-property.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/making-glissandi-breakable.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/making-slurs-with-complex-dash-structure.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/manually-controlling-beam-positions.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/marking-notes-of-spoken-parts-with-a-cross-on-the-stem.ly View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/measure-counter.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/merging-multi-measure-rests-in-a-polyphonic-part.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/moving-dotted-notes-in-polyphony.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/moving-slur-positions-vertically.ly View 1 2 3 4 2 chunks +10 lines, -10 lines 0 comments Download
M Documentation/snippets/new/adding-orchestral-cues-to-a-vocal-score.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/new/adding-timing-marks-to-long-glissandi.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/new/ancient-fonts.ly View 1 2 3 4 6 chunks +40 lines, -40 lines 0 comments Download
M Documentation/snippets/new/ancient-notation-template----modern-transcription-of-gregorian-music.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
Documentation/snippets/new/bar-chords-notation-for-guitar--with-text-spanner.ly View 1 2 3 4 3 chunks +8 lines, -8 lines 0 comments Download
M Documentation/snippets/new/centering-markup-on-note-heads-automatically.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/new/chant-or-psalms-notation.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/new/chords-headword.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/new/fretted-headword.ly View 1 2 3 4 4 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/new/generating-custom-flags.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/new/glissandi-can-skip-grobs.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/new/guitar-slides.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/new/incipit.ly View 1 2 3 4 10 chunks +14 lines, -15 lines 0 comments Download
M Documentation/snippets/new/jazz-combo-template.ly View 1 2 3 4 3 chunks +11 lines, -11 lines 0 comments Download
M Documentation/snippets/new/making-an-object-invisible-with-the-transparent-property.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/new/making-glissandi-breakable.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/new/positioning-multi-measure-rests.ly View 1 2 3 4 4 chunks +10 lines, -10 lines 0 comments Download
M Documentation/snippets/new/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/new/redefining-grace-note-global-defaults.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/new/score-for-diatonic-accordion.ly View 1 2 3 4 7 chunks +14 lines, -14 lines 0 comments Download
M Documentation/snippets/new/staff-headword.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/new/string-number-extender-lines.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/new/using-a-tick-as-the-breath-mark-symbol.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/new/using-alternative-flag-styles.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/new/using-grace-note-slashes-with-normal-heads.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/non-default-tuplet-numbers.ly View 1 2 3 4 2 chunks +8 lines, -8 lines 0 comments Download
M Documentation/snippets/obtaining-2.12-lyrics-spacing-in-newer-versions.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
Documentation/snippets/outputting-the-version-number.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/page-label.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/permitting-line-breaks-within-beamed-tuplets.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/pitches-headword.ly View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/positioning-arpeggios.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/positioning-fingering-indications-precisely.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/positioning-grace-notes-with-floating-space.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/positioning-multi-measure-rests.ly View 1 2 3 4 4 chunks +10 lines, -10 lines 0 comments Download
M Documentation/snippets/positioning-segno-and-coda-with-line-break.ly View 1 2 3 4 6 chunks +14 lines, -14 lines 0 comments Download
M Documentation/snippets/positioning-text-markups-inside-slurs.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly View 1 2 3 4 3 chunks +8 lines, -8 lines 0 comments Download
M Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/printing-bar-numbers-at-regular-intervals.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/printing-bar-numbers-inside-boxes-or-circles.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/printing-hairpins-using-al-niente-notation.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/printing-marks-at-the-end-of-a-line.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/printing-music-with-different-time-signatures.ly View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/proportional-strict-notespacing.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/putting-lyrics-inside-the-staff.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/quoting-another-voice.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/recorder-fingering-chart.ly View 1 2 3 4 4 chunks +9 lines, -9 lines 0 comments Download
M Documentation/snippets/redefining-grace-note-global-defaults.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
Documentation/snippets/removing-the-first-empty-line.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/rest-styles.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/rhythmic-slashes.ly View 1 2 3 4 2 chunks +8 lines, -8 lines 0 comments Download
M Documentation/snippets/rhythms-headword.ly View 1 2 3 4 4 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/score-for-diatonic-accordion.ly View 1 2 3 4 7 chunks +14 lines, -14 lines 0 comments Download
M Documentation/snippets/screech-and-boink.ly View 1 2 3 4 4 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/separating-key-cancellations-from-key-signature-changes.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/setting-the-minimum-length-of-hairpins.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/showing-the-same-articulation-above-and-below-a-note-or-chord.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/simultaneous-headword.ly View 1 2 3 4 6 chunks +8 lines, -8 lines 0 comments Download
M Documentation/snippets/slides-in-tablature.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/staff-headword.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/stem-and-beam-behavior-in-tablature.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/stemlets.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/string-number-extender-lines.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/suppressing-warnings-for-clashing-note-columns.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/text-headword.ly View 1 2 3 4 8 chunks +11 lines, -11 lines 0 comments Download
M Documentation/snippets/time-signature-in-parentheses.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/time-signature-in-parentheses---method-3.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/time-signature-printing-only-the-numerator-as-a-number-instead-of-the-fraction.ly View 1 2 3 4 3 chunks +6 lines, -6 lines 0 comments Download
M Documentation/snippets/transcription-of-ancient-music-with-incipit.ly View 1 2 3 4 12 chunks +22 lines, -22 lines 0 comments Download
M Documentation/snippets/unfretted-headword.ly View 1 2 3 4 7 chunks +13 lines, -13 lines 0 comments Download
M Documentation/snippets/using-a-tick-as-the-breath-mark-symbol.ly View 1 2 3 4 2 chunks +3 lines, -4 lines 0 comments Download
M Documentation/snippets/using-alternative-flag-styles.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/using-grace-note-slashes-with-normal-heads.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/using-postscript-to-generate-special-note-head-shapes.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/using-the--tweak-command-to-tweak-individual-grobs.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/snippets/using-the-whiteout-property.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/vertically-aligned-dynamics-and-textscripts.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/vertically-aligning-ossias-and-lyrics.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/vertically-centered-common-lyrics.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M Documentation/snippets/vocal-ensemble-template.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M Documentation/snippets/vocal-ensemble-template-with-verse-and-refrain.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Documentation/snippets/vocal-headword.ly View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M Documentation/snippets/wind-headword.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M Documentation/usage/running.itely View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M VERSION View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M input/regression/accidental-ancient.ly View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
input/regression/accidental-cautionary.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/accidental-contemporary.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/accidental-piano.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/accidental-placement-padding.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/accidental-suggestions.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/accidental-tie.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/accidental-voice.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/alignment-order.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/alignment-vertical-manual-setting.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M input/regression/alter-broken.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/ambitus-gap.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/arpeggio.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/arpeggio-no-overshoot.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/auto-beam-tuplets.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/backend-excercise.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/baerenreiter-sarabande.ly View 1 2 3 4 4 chunks +5 lines, -5 lines 0 comments Download
M input/regression/balloon.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/bar-extent.ly View 1 2 3 4 5 chunks +8 lines, -8 lines 0 comments Download
M input/regression/bar-number.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/bar-number-volta-repeat.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-beamlet-break.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-break.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/beam-break-no-bar.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/beam-broken-classic.ly View 1 2 3 4 3 chunks +7 lines, -7 lines 0 comments Download
M input/regression/beam-broken-difficult.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M input/regression/beam-center-slope.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/beam-collision-classic.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-collision-off.ly View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M input/regression/beam-collision-scaled-staff.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/beam-collision-voice-only.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-concave.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-concave-chord.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/beam-default-lengths.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-extreme.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-feather.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-feather-breaking.ly View 1 2 3 4 2 chunks +47 lines, -47 lines 0 comments Download
M input/regression/beam-feather-knee-stem-length.ly View 1 2 3 4 2 chunks +11 lines, -11 lines 0 comments Download
M input/regression/beam-french.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-funky.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-funky-beamlet.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M input/regression/beam-manual-beaming.ly View 1 2 3 4 2 chunks +3 lines, -5 lines 0 comments Download
M input/regression/beam-outside-beamlets.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
input/regression/beam-position.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/beam-quant-standard.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-slope-stemlet.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/beam-unconnected-beamlets.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
input/regression/bend-after.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/break-alignment-anchor-alignment.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/break-alignment-anchors.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/breathing-sign.ly View 1 2 3 4 3 chunks +6 lines, -6 lines 0 comments Download
M input/regression/breathing-sign-custom-staff.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/breve-extent.ly View 1 2 3 4 2 chunks +4 lines, -5 lines 0 comments Download
M input/regression/chord-name-override-text.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
input/regression/chromatic-scales.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/clef-oct-visibility.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/clefs.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/cluster-style.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/collision-dots-move.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/collision-dots-up-space-dotted.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/collision-manual.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/collision-merge-differently-dotted.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/collision-merge-differently-headed.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/collision-whole.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/color.ly View 1 2 3 4 2 chunks +10 lines, -10 lines 0 comments Download
M input/regression/compound-time-signatures.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/context-mod-context.ly View 1 2 3 4 4 chunks +5 lines, -5 lines 0 comments Download
M input/regression/context-mod-with.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M input/regression/cue-clef-after-barline.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M input/regression/custos.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M input/regression/display-lily-tests.ly View 1 2 3 4 3 chunks +12 lines, -12 lines 0 comments Download
M input/regression/dot-dot-count-override.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/drums.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/dynamics-alignment-no-line.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/dynamics-alignment-no-line-linebreak.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/dynamics-context-textspan.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/dynamics-text-right-padding.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/easy-notation.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/episema.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/event-listener-output.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
input/regression/figured-bass.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/finger-chords.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M input/regression/fingering-column.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/fingering-cross-staff.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/flags-default.ly View 1 2 3 4 2 chunks +13 lines, -13 lines 0 comments Download
M input/regression/flags-in-scheme.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/flags-straight.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M input/regression/flags-straight-stockhausen-boulez.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/font-bogus-ligature.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/font-family-override.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/font-name.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/footnote-auto-numbering.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M input/regression/footnote-auto-numbering-page-reset.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/footnote-auto-numbering-vertical-order.ly View 1 2 3 4 2 chunks +16 lines, -16 lines 0 comments Download
M input/regression/footnote-break-visibility.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/footnote-spanner.ly View 1 2 3 4 3 chunks +8 lines, -8 lines 0 comments Download
M input/regression/fret-diagram-origins.ly View 1 2 3 4 2 chunks +3 lines, -5 lines 0 comments Download
M input/regression/fret-diagrams-capo.ly View 1 2 3 4 2 chunks +2 lines, -3 lines 0 comments Download
M input/regression/fret-diagrams-dots.ly View 1 2 3 4 4 chunks +5 lines, -8 lines 0 comments Download
M input/regression/fret-diagrams-fingering.ly View 1 2 3 4 8 chunks +8 lines, -15 lines 0 comments Download
M input/regression/fret-diagrams-fret-label.ly View 1 2 3 4 4 chunks +10 lines, -17 lines 0 comments Download
M input/regression/fret-diagrams-landscape.ly View 1 2 3 4 2 chunks +4 lines, -7 lines 0 comments Download
M input/regression/fret-diagrams-opposing-landscape.ly View 1 2 3 4 2 chunks +4 lines, -7 lines 0 comments Download
M input/regression/fret-diagrams-string-thickness.ly View 1 2 3 4 3 chunks +3 lines, -4 lines 0 comments Download
M input/regression/fret-diagrams-xo-label.ly View 1 2 3 4 2 chunks +6 lines, -11 lines 0 comments Download
input/regression/glissando.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M input/regression/glissando-broken.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/glissando-broken-multiple.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
input/regression/glissando-broken-unkilled.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M input/regression/glissando-index.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/glissando-skip.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/grace-stem-length.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/grace-stems.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/grid-lines.ly View 1 2 3 4 5 chunks +15 lines, -15 lines 0 comments Download
M input/regression/grob-indirect-tweak.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
input/regression/grob-tweak.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/hairpin-barline-break.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
input/regression/hairpin-circled.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/hairpin-dashed.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/hairpin-ending.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/hairpin-neighboring-span-dynamics.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M input/regression/hairpin-to-barline.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/hara-kiri-alive-with.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/hara-kiri-keep-previous-settings.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/harp-pedals-sanity-checks.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/harp-pedals-tweaking.ly View 1 2 3 4 3 chunks +9 lines, -9 lines 0 comments Download
M input/regression/horizontal-bracket-tweak.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/id.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/in-note.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/incipit.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/instrument-name-hara-kiri.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/instrument-name-x-align.ly View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M input/regression/key-clefs.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/key-signature-padding.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/laissez-vibrer-tie-head-direction.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/laissez-vibrer-ties.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
input/regression/layout-from.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/ledger-lines-varying-staves.ly View 1 2 3 4 2 chunks +9 lines, -9 lines 0 comments Download
M input/regression/les-nereides.ly View 1 2 3 4 10 chunks +13 lines, -13 lines 0 comments Download
M input/regression/lily-in-scheme.ly View 1 2 3 4 1 chunk +7 lines, -7 lines 0 comments Download
M input/regression/line-arrows.ly View 1 2 3 4 1 chunk +12 lines, -12 lines 0 comments Download
M input/regression/line-dash-small-period.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/line-dashed-period.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/line-style.ly View 1 2 3 4 1 chunk +7 lines, -7 lines 0 comments Download
M input/regression/line-style-zigzag-spacing.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/lyric-combine-switch-voice.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/lyric-combine-switch-voice-2.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/lyric-hyphen.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/lyric-hyphen-retain.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/lyric-tweak.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/lyrics-bar.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/lyrics-no-notes.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/markup-commands.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/markup-line-thickness.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/markup-note.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/markup-note-grob-style.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/markup-syntax.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/markup-user.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/mensural.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/mensural-ligatures.ly View 1 2 3 4 7 chunks +20 lines, -20 lines 0 comments Download
M input/regression/metronome-mark-broken-bound.ly View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M input/regression/metronome-mark-loose-column.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/metronome-marking-align-order.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/metronome-marking-break-align.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/modern-tab-clef-scaled.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/morgenlied.ly View 1 2 3 4 6 chunks +10 lines, -10 lines 0 comments Download
M input/regression/mozart-hrn3-defs.ily View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M input/regression/mozart-hrn3-romanze.ily View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/multi-measure-rest-center.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/multi-measure-rest-multi-staff-center.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/multi-measure-rest-staff-position.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/multi-measure-rest-text.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/multi-measure-rest-tweaks.ly View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
M input/regression/music-function-end-spanners.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/non-centered-bar-lines.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/non-empty-text.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
input/regression/note-head-style.ly View 1 2 3 4 3 chunks +18 lines, -18 lines 0 comments Download
M input/regression/note-line.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/number-staff-lines.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/ottava-edge.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/outside-staff-placement-directive.ly View 1 2 3 4 4 chunks +8 lines, -8 lines 0 comments Download
M input/regression/override-nest.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/override-nest-scheme.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/page-breaking-min-distance2.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/page-breaking-min-distance3.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/page-label.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/page-layout-manual-position.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/page-spacing.ly View 1 2 3 4 3 chunks +10 lines, -10 lines 0 comments Download
M input/regression/page-spacing-bass-figures.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/page-spacing-dynamics.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/page-spacing-nonstaff-lines-between.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/page-spacing-nonstaff-lines-bottom.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/page-spacing-nonstaff-lines-header-padding.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/page-spacing-nonstaff-lines-independent.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/page-spacing-nonstaff-lines-top.ly View 1 2 3 4 2 chunks +3 lines, -4 lines 0 comments Download
M input/regression/page-spacing-nonstaff-lines-unrelated.ly View 1 2 3 4 2 chunks +2 lines, -3 lines 0 comments Download
M input/regression/page-spacing-staff-group-hara-kiri.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/page-spacing-staff-group-nested.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/page-spacing-stretchability.ly View 1 2 3 4 2 chunks +2 lines, -3 lines 0 comments Download
input/regression/page-top-space.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/parenthesize.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/pedal-ped.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/phrasing-slur-dash.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/property-nested-override.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/property-nested-revert.ly View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
M input/regression/property-once.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/quote.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/quote-during.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/quote-overrides.ly View 1 2 3 4 3 chunks +7 lines, -7 lines 0 comments Download
M input/regression/quote-tuplet.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/rehearsal-mark-align.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/rehearsal-mark-align-priority.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/rehearsal-mark-align-staff-context.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/rehearsal-mark-direction.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/remove-empty-staves-auto-knee.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/remove-empty-staves-with-rests.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/repeat-percent-kerning.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/repeat-sign.ly View 1 2 3 4 15 chunks +17 lines, -17 lines 0 comments Download
M input/regression/repeat-sign-global-size-10.ly View 1 2 3 4 3 chunks +7 lines, -7 lines 0 comments Download
M input/regression/repeat-sign-global-size-30.ly View 1 2 3 4 3 chunks +7 lines, -7 lines 0 comments Download
M input/regression/repeat-sign-global-size-5.ly View 1 2 3 4 3 chunks +6 lines, -6 lines 0 comments Download
M input/regression/repeat-sign-layout-size.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M input/regression/rest-collision-beam-restdir.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/rest-ledger.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/rest-on-nonstandard-staff.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/scheme-text-spanner.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/script-shift.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/shape-other-curves.ly View 1 2 3 4 4 chunks +5 lines, -5 lines 0 comments Download
M input/regression/shape-slurs.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/skyline-horizontal-padding.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M input/regression/skyline-vertical-placement.ly View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
input/regression/slur-dash.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
input/regression/slur-extreme.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/slur-manual.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/slur-scoring.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/slur-script.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/slur-script-inside.ly View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
M input/regression/slur-tuplet.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/slur-vestigial-outside-staff-callback.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/song-reordering.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
input/regression/song-reordering2.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-accidental-stretch.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-bar-accidental.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/spacing-bar-arpeggio.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/spacing-bar-stem.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/spacing-bar-whole-measure.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/spacing-folded-clef2.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/spacing-grace.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-horizontal-skyline-grace.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-knee.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/spacing-knee-compressed.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-loose-grace.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/spacing-loose-grace-error.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-loose-grace-linebreak.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/spacing-mark-width.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-measure-length.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-multi-tuplet.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-packed.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/spacing-paper-column-padding.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/spacing-space-to-barline.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/spacing-stem-bar.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/spacing-stem-direction.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
input/regression/spacing-stem-same-direction.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/spacing-strict-notespacing.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/spacing-strict-spacing-grace.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/spacing-to-empty-barline.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
input/regression/spacing-uniform-stretching.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/span-bar.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/span-bar-allow-span-bar.ly View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M input/regression/span-bar-partial.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/spanner-after-line-breaking.ly View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M input/regression/spanner-break-overshoot.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/staff-ledger-positions.ly View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
M input/regression/staff-line-positions.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/staff-mixed-size.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/staff-tweak.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
input/regression/stem-direction-context.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/stem-length.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/stem-length-estimation.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/stem-stemlet.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/stem-stemlet-whole.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/stem-tremolo.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/stem-tremolo-note-column.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/stem-tremolo-staff-space.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/stencil-color-rotation.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/stencil-hacking.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/stencil-scale.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/system-extents.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/system-start-bar-collapse-staffspace.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/system-start-heavy-bar.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/tablature-chord-repetition.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tablature-full-notation.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tablature-harmonic-functions.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tablature-tie-behaviour.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M input/regression/text-spanner-attachment-alignment.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/text-spanner-override-order.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/tie-accidental.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tie-broken-minimum-length.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tie-chord-broken-extremal.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tie-dash.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tie-manual.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tie-manual-vertical-tune.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
input/regression/tie-semi-single.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/tie-single-manual.ly View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
M input/regression/trill-spanner-chained.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/trill-spanner-scaled.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tuplet-bracket-avoid-fingering.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tuplet-bracket-avoid-string-number.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tuplet-bracket-cross-staff.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tuplet-bracket-outside-staff-priority.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
input/regression/tuplet-bracket-vertical-skylines.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tuplet-bracket-visibility.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/tuplet-broken.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/tuplet-full-length.ly View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M input/regression/tuplet-full-length-extent.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/tuplet-gap.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
input/regression/tuplet-nest.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/tuplet-nest-broken.ly View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M input/regression/tuplet-no-stems.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/tuplet-number-outside-staff-positioning.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/tuplet-number-outside-staff-priority.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/tuplet-properties.ly View 1 2 3 4 2 chunks +10 lines, -10 lines 0 comments Download
M input/regression/tuplet-text-different-numbers.ly View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M input/regression/tuplet-text-fraction-with-notes.ly View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M input/regression/tuplet-text-note-appended.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/tuplets.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M input/regression/typography-demo.ly View 1 2 3 4 5 chunks +12 lines, -12 lines 0 comments Download
M input/regression/unpure-pure-container.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/whiteout.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M input/regression/whiteout-lower-layers.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M input/regression/zero-staff-space.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M lily/footnote-engraver.cc View 1 2 3 4 2 chunks +2 lines, -41 lines 0 comments Download
M lily/parser.yy View 1 2 3 4 26 chunks +550 lines, -175 lines 0 comments Download
M ly/arabic.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M ly/bagpipe.ly View 1 2 3 4 4 chunks +12 lines, -12 lines 0 comments Download
M ly/context-mods-init.ly View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M ly/declarations-init.ly View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M ly/engraver-init.ly View 1 2 3 4 25 chunks +123 lines, -125 lines 0 comments Download
M ly/grace-init.ly View 1 2 3 4 2 chunks +5 lines, -5 lines 0 comments Download
M ly/gregorian.ly View 1 2 3 4 6 chunks +50 lines, -50 lines 0 comments Download
M ly/makam.ly View 1 2 3 4 2 chunks +6 lines, -6 lines 0 comments Download
M ly/music-functions-init.ly View 1 2 3 4 14 chunks +107 lines, -122 lines 0 comments Download
M ly/property-init.ly View 1 2 3 4 18 chunks +202 lines, -199 lines 0 comments Download
M python/convertrules.py View 1 2 3 4 1 chunk +56 lines, -0 lines 0 comments Download
M scm/c++.scm View 1 3 4 2 chunks +12 lines, -2 lines 0 comments Download
M scm/lily.scm View 1 2 3 4 2 chunks +3 lines, -2 lines 0 comments Download

Messages

Total messages: 14
lemzwerg
LGTM, without testing, and without really understanding the change. However, simplifications and generalizations are always ...
11 years, 6 months ago (2012-10-09 05:04:50 UTC) #1
dak
On 2012/10/09 05:04:50, lemzwerg wrote: > LGTM, without testing, and without really understanding the change. ...
11 years, 6 months ago (2012-10-09 07:36:52 UTC) #2
t.daniels_treda.co.uk
<dak@gnu.org>: Tuesday, October 09, 2012 8:36 AM > On 2012/10/09 05:04:50, lemzwerg wrote: >> http://codereview.appspot.com/6635050/diff/1/Documentation/de/notation/pitches.itely#newcode1529 ...
11 years, 6 months ago (2012-10-09 08:14:55 UTC) #3
dak
On 2012/10/09 08:14:55, t.daniels_treda.co.uk wrote: > <dak@gnu.org>: Tuesday, October 09, 2012 8:36 AM > > ...
11 years, 6 months ago (2012-10-09 08:38:34 UTC) #4
t.daniels_treda.co.uk
dak@gnu.org: Tuesday, October 09, 2012 9:38 AM > Here is the rub: what we are ...
11 years, 6 months ago (2012-10-09 10:03:59 UTC) #5
dak
On 2012/10/09 10:03:59, t.daniels_treda.co.uk wrote: > dak@gnu.org: Tuesday, October 09, 2012 9:38 AM > > ...
11 years, 6 months ago (2012-10-09 10:33:36 UTC) #6
wl_gnu.org
> \accidentalStyle StaffGroup.voice This is my preferred form. However, some time ago we decided (more ...
11 years, 6 months ago (2012-10-09 12:28:25 UTC) #7
dak
Werner LEMBERG <wl@gnu.org> writes: >> \accidentalStyle StaffGroup.voice > > This is my preferred form. However, ...
11 years, 6 months ago (2012-10-09 12:32:42 UTC) #8
lemzwerg
LGTM. http://codereview.appspot.com/6635050/diff/7002/ly/music-functions-init.ly File ly/music-functions-init.ly (right): http://codereview.appspot.com/6635050/diff/7002/ly/music-functions-init.ly#newcode105 ly/music-functions-init.ly:105: (ly:input-warning location (_ "not a spanner name, `~a'") ...
11 years, 6 months ago (2012-10-09 16:44:16 UTC) #9
dak
http://codereview.appspot.com/6635050/diff/7002/ly/music-functions-init.ly File ly/music-functions-init.ly (right): http://codereview.appspot.com/6635050/diff/7002/ly/music-functions-init.ly#newcode105 ly/music-functions-init.ly:105: (ly:input-warning location (_ "not a spanner name, `~a'") name) ...
11 years, 6 months ago (2012-10-09 18:24:22 UTC) #10
janek
I'm just skimming the discussion (the patch is big and non-trivial, so i will have ...
11 years, 6 months ago (2012-10-09 21:08:47 UTC) #11
dak
On 2012/10/09 21:08:47, janek wrote: > I'm just skimming the discussion (the patch is big ...
11 years, 6 months ago (2012-10-10 16:34:21 UTC) #12
Keith
I like it. http://codereview.appspot.com/6635050/diff/15002/Documentation/notation/changing-defaults.itely File Documentation/notation/changing-defaults.itely (right): http://codereview.appspot.com/6635050/diff/15002/Documentation/notation/changing-defaults.itely#newcode4202 Documentation/notation/changing-defaults.itely:4202: \tweak NoteHead.stencil #ly:text-interface::print The dotted form ...
11 years, 6 months ago (2012-10-13 05:16:00 UTC) #13
dak
11 years, 6 months ago (2012-10-13 07:04:08 UTC) #14
http://codereview.appspot.com/6635050/diff/15002/Documentation/notation/chang...
File Documentation/notation/changing-defaults.itely (right):

http://codereview.appspot.com/6635050/diff/15002/Documentation/notation/chang...
Documentation/notation/changing-defaults.itely:4202: \tweak NoteHead.stencil
#ly:text-interface::print
On 2012/10/13 05:16:00, Keith wrote:
> 
> The dotted form is very nice.  
> 
> This way we always have two arguments, each of which can be expanded to a
dotted
> form to clarify where to find the thing we want LilyPond to change.  This
> more-regular syntax is easier to remember than optional arguments.
> 
> { \override Script X-offset = #-0.5
>   d'->
>   d'-\tweak X-offset #-0.5 ->
>   \override Staff.Stem X-offset = #0.7
>   << g' \\ b >>
>   \tweak Stem.X-offset #0.25 g' }

The mailing list discussion pointed out the inconsistency between the use of
dots between tweaks and overrides.  If tweaking of nested properties is
implemented at some point of time, recognizing the specification of an optional
context when at the same time optional trailing path components might be
available is not really feasible.

Several proposals for changing this have been put forward.  Have to think about
this.

http://codereview.appspot.com/6635050/diff/15002/lily/footnote-engraver.cc
File lily/footnote-engraver.cc (left):

http://codereview.appspot.com/6635050/diff/15002/lily/footnote-engraver.cc#ol...
lily/footnote-engraver.cc:49: IMPLEMENT_TRANSLATOR_LISTENER (Footnote_engraver,
footnote);
On 2012/10/13 05:16:00, Keith wrote:
> I don't see now the new syntax avoids the need for a listener -- is this
> clean-up of unused code ?

The new syntax allows a grob specification _with_ context, allowing to turn a
"time-based" footnote into a proper override instead of an event.  Since the
tweak-like interpretation of the "footnote-music" field was already in place
previously, this works just as well.

The disadvantage is that you have to specify the context in case of things like
Staff.TimeSignature, just like you would have to do with any override.

The advantage is that this is predictably similar to other operations and does
not require you to juggle the Footnote_engraver between different contexts in
order to have it do its job in difficult circumstances.

So this change of operation is not forced by the new syntax, but rather
facilitated.

Since there is no longer anything generating footnote music events for any
purpose except sticking it into the footnote-music property of grobs, using a
Music data structure at all for storing the footnote data is pretty arbitrary. 
It might be subject to later cleanup, but I wanted to keep the changes
reasonably confined.

This is probably something that is easier to examine in the scope of its change
as a commit in the dev/syntax branch
Sign in to reply to this message.

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