]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/group-interface.hh
* Another grand 2003 update.
[lilypond.git] / lily / include / group-interface.hh
index 5ee3a085e59d54f5ede1f9cf3fc9a70556013425..3327c0a8d84b91176d6213bff8f35c032f3f8ad0 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1999--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
@@ -35,24 +35,6 @@ struct Pointer_group_interface : public Group_interface {
 public:
   static void add_grob (Grob*, SCM nm, Grob*e);
 };
-/** 
-  Put all score elements of ELT's property called NAME into an array,
-  and return it.  */
-
-inline Link_array<Grob>
-list_to_grob_array (SCM l)
-{
-  Link_array<Grob> arr;
-
-  for (SCM s = l; gh_pair_p (s); s = gh_cdr (s))
-    {
-      SCM e = gh_car (s);
-      arr.push (unsmob_grob (e));
-    }
-
-  arr.reverse ();
-  return arr;
-}
 
 template<class T>
 Link_array<T>