]> git.donarmstrong.com Git - lilypond.git/commitdiff
parser.yy: remove unused function set_music_properties
authorDavid Kastrup <dak@gnu.org>
Thu, 13 Sep 2012 13:16:32 +0000 (15:16 +0200)
committerDavid Kastrup <dak@gnu.org>
Thu, 27 Sep 2012 10:15:38 +0000 (12:15 +0200)
lily/parser.yy

index a50957fa8bb07ba2f07bf3ab0daa1f1133f229ca..e31937f316598e7f22b2a941782975852121ee13 100644 (file)
@@ -232,7 +232,6 @@ SCM make_simple_markup (SCM a);
 bool is_duration (int t);
 bool is_regular_identifier (SCM id);
 int yylex (YYSTYPE *s, YYLTYPE *loc, Lily_parser *parser);
-void set_music_properties (Music *p, SCM a);
 
 %}
 
@@ -3192,14 +3191,6 @@ is_duration (int t)
   return t && t == 1 << intlog2 (t);
 }
 
-void
-set_music_properties (Music *p, SCM a)
-{
-  for (SCM k = a; scm_is_pair (k); k = scm_cdr (k))
-       p->set_property (scm_caar (k), scm_cdar (k));
-}
-
-
 SCM
 make_chord_step (SCM step_scm, Rational alter)
 {