summaryrefslogtreecommitdiff
path: root/input
diff options
context:
space:
mode:
authorDavid Kastrup <dak@gnu.org>2016-06-29 18:32:09 +0200
committerDavid Kastrup <dak@gnu.org>2016-07-07 17:57:28 +0200
commitf9c883f1a2eb08ca1da388ce1c0ebc1fb3556e5a (patch)
tree19520100014c790bcf051192a39dee276ebde7e8 /input
parent06732c99ce6ed25d7b8d43310cb4bb38b19fe27e (diff)
Issue 4908/5: Add \header variables to `identifiers' regtest
Diffstat (limited to 'input')
-rw-r--r--input/regression/identifiers.ly8
1 files changed, 5 insertions, 3 deletions
diff --git a/input/regression/identifiers.ly b/input/regression/identifiers.ly
index 1db60350ff..86d1ebb52f 100644
--- a/input/regression/identifiers.ly
+++ b/input/regression/identifiers.ly
@@ -2,25 +2,27 @@
\header {
texidoc = "test identifiers."
}
-\version "2.16.0"
+\version "2.19.45"
num = #3
mus = { c'4 }
paperId = \paper { line-width = 5.0 \cm }
layoutId = \layout { ragged-right = ##t }
+scoreHeaderId = \header { piece = "Piece" }
+bookHeaderId = \header { composer = "Composer" title = "Title" }
perfId = \midi {}
markupId = \markup { hoi }
stringId = "title"
-% headers not allowed as Id's
-
scoreId = \score {
+ \scoreHeaderId
\repeat unfold \num \mus
\layout { \layoutId }
\midi { \perfId }
}
bookId = \book {
+ \bookHeaderId
\score { \scoreId }
\paper { \paperId }
}