]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/apply-output.ly
* Documentation/user/changing-defaults.itely,
[lilypond.git] / input / regression / apply-output.ly
index 56d515557055194ed0a04b31a56b9400d71cf9e9..3a9646581211e120651aae0adb3f3f5660dae42d 100644 (file)
@@ -1,30 +1,29 @@
+\version "2.9.28"
 
-\version "2.9.6" 
 \header {
-
   texidoc = "The @code{\applyOutput} expression is the most flexible way to
 tune properties for individual grobs.
 
 Here, the layout of a note head is changed depending on its vertical
 position.
 "
+}
 
+\layout {
+  ragged-right = ##t
 }
-\layout { ragged-right = ##t }
 
-#(define  (mc-squared gr org cur)
+#(define (mc-squared gr org cur)
   (let*
    (
      (ifs (ly:grob-interfaces gr))
      (sp (ly:grob-property gr 'staff-position))
    )
-   (if (and (memq 'note-head-interface ifs)
-       (memq sp '(-2 -3 -5)))
+   (if (memq 'note-head-interface ifs)
     (begin
      (ly:grob-set-property! gr 'stencil ly:text-interface::print)
      (ly:grob-set-property! gr 'font-family 'roman)
-     (ly:grob-set-property!
-      gr 'text
+     (ly:grob-set-property! gr 'text
       (make-raise-markup -0.5
        (case sp
        ((-5) (make-simple-markup "m"))
@@ -34,14 +33,15 @@ position.
       ))))
   )))
 
-\context Voice \relative  c' {
+\context Voice \relative c' {
   \stemUp
-  \set autoBeaming =  ##f
+  \set autoBeaming = ##f
+
   { <d f g b>8
-    \applyOutput #'Voice #mc-squared
 
+    \applyOutput #'Voice #mc-squared
     <d f g b>
   }
-  
 }
 
+# EOF