X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscale.cc;h=02c1dc5f8e2daca09b480ac977049c66e70d68e3;hb=97a0169312a260933246ab224e4f8b0969871dd5;hp=a5afd41daee5f86fd466e4ac0af98c52fa641e95;hpb=658c44d32fe6406c472152875346d63211c7bae2;p=lilypond.git diff --git a/lily/scale.cc b/lily/scale.cc index a5afd41dae..02c1dc5f8e 100644 --- a/lily/scale.cc +++ b/lily/scale.cc @@ -20,6 +20,7 @@ */ #include "scale.hh" +#include "protected-scm.hh" /* @@ -53,25 +54,25 @@ LY_DEFINE (ly_make_scale, "ly:make-scale", SCM_ASSERT_TYPE (type_ok, steps, SCM_ARG1, __FUNCTION__, "vector of rational"); - Scale *s = new Scale (tones); + return (new Scale (tones))->unprotect (); +} - SCM retval = s->self_scm (); - s->unprotect (); +Scale *default_global_scale = 0; +Protected_scm default_global_scale_scm (SCM_BOOL_F); - return retval; -} +// TODO: This is somewhat fishy: pitches protect their scale via a +// mark_smob hook. But since pitches are of Simple_smob variety, they +// are unknown to GUILE unless a smobbed_copy has been created. So +// changing the default scale might cause some existing pitches to +// lose their scale's protection. LY_DEFINE (ly_default_scale, "ly:default-scale", 0, 0, 0, (), "Get the global default scale.") { - return default_global_scale - ? default_global_scale->self_scm () - : SCM_BOOL_F; + return default_global_scale_scm; } -Scale *default_global_scale = 0; - LY_DEFINE (ly_set_default_scale, "ly:set-default-scale", 1, 0, 0, (SCM scale), "Set the global default scale. This determines the tuning of" @@ -83,11 +84,8 @@ LY_DEFINE (ly_set_default_scale, "ly:set-default-scale", { LY_ASSERT_SMOB (Scale, scale, 1); - Scale *s = Scale::unsmob (scale); - if (default_global_scale) - default_global_scale->unprotect (); - default_global_scale = s; - s->protect (); + default_global_scale_scm = scale; + default_global_scale = unsmob (scale); return SCM_UNSPECIFIED; }