]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.95
authorfred <fred>
Wed, 27 Mar 2002 00:25:55 +0000 (00:25 +0000)
committerfred <fred>
Wed, 27 Mar 2002 00:25:55 +0000 (00:25 +0000)
input/bugs/generic-output-property.ly [deleted file]
lily/output-property.cc [deleted file]

diff --git a/input/bugs/generic-output-property.ly b/input/bugs/generic-output-property.ly
deleted file mode 100644 (file)
index 5adbba9..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-\score{
-       \notes\relative c''{
-       \outputproperty #(make-type-checker 'note-head-interface) 
-               #'extra-offset = #'(2 . 3)
-       c2
-       c
-       \context Score {
-               \outputproperty #(make-type-checker 'mark-interface) 
-               #'extra-offset = #'(-1 . 4)
-       }
-       \mark A;
-       d1
-       \mark;
-       e
-}
-\paper{
-       linewidth=-1.0;
-       \translator {
-               \ScoreContext
-               \consists "Mark_engraver";
-       }
-}
-}
diff --git a/lily/output-property.cc b/lily/output-property.cc
deleted file mode 100644 (file)
index 8cd70e8..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/*   
-  output-property.cc --  implement Output_property
-  
-  source file of the GNU LilyPond music typesetter
-  
-  (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
-#include "output-property.hh"
-#include "lily-guile.hh"
-
-Output_property::Output_property(SCM pred, SCM sym, SCM val)
-{
-  set_mus_property ("predicate", pred);
-  set_mus_property ("symbol", sym);
-  set_mus_property ("value", val);
-}
-