]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/header-cyclic-reference.ly
Fix 380: Auto-detect all cyclic references in markups
[lilypond.git] / input / regression / header-cyclic-reference.ly
1 \version "2.15.11"
2 #(ly:set-option 'warning-as-error #f)
3
4 \header {
5   texidoc = "Cyclic references in header fields should cause a warning, but
6 not crash LilyPond with an endless loop"
7
8   title = \markup {Cyclic reference to \fromproperty #'header:title }
9
10   composer = \markup {Cyclic reference to \fromproperty #'header:temp }
11   temp = \markup {Cyclic reference to \fromproperty #'header:composer }
12 }
13 \score {
14   { c' d' e' f' }
15 }