From: David Kastrup Date: Thu, 13 Sep 2012 13:16:32 +0000 (+0200) Subject: parser.yy: remove unused function set_music_properties X-Git-Tag: release/2.17.4-1~27 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2cde1060ed33782cfcb5a42fa2f86c9ca79baa44;p=lilypond.git parser.yy: remove unused function set_music_properties --- diff --git a/lily/parser.yy b/lily/parser.yy index a50957fa8b..e31937f316 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -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) {