X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmoment-scheme.cc;h=ccbd77c4de1986a5d684e0a252818f152c4541cc;hb=da06c726ee905a6a2fa476a37fc4db715692d0dc;hp=85155034c597bc6c3bd187d2960832a27f4b4387;hpb=a667c0fbd789c30b782bae277456bb1f940ddccc;p=lilypond.git diff --git a/lily/moment-scheme.cc b/lily/moment-scheme.cc index 85155034c5..ccbd77c4de 100644 --- a/lily/moment-scheme.cc +++ b/lily/moment-scheme.cc @@ -1,9 +1,20 @@ /* - moment.cc -- implement Moment bindings + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1999--2010 Han-Wen Nienhuys - (c) 1999--2007 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #include "moment.hh" @@ -111,7 +122,7 @@ LY_DEFINE (ly_moment_grace_numerator, "ly:moment-grace-numerator", Moment *ma = unsmob_moment (mom); - return scm_from_int (ma->grace_part_.numerator ()); + return scm_from_int64 (ma->grace_part_.numerator ()); } LY_DEFINE (ly_moment_grace_denominator, "ly:moment-grace-denominator", @@ -121,7 +132,7 @@ LY_DEFINE (ly_moment_grace_denominator, "ly:moment-grace-denominator", LY_ASSERT_SMOB (Moment, mom, 1); Moment *ma = unsmob_moment (mom); - return scm_from_int (ma->grace_part_.denominator ()); + return scm_from_int64 (ma->grace_part_.denominator ()); } LY_DEFINE (ly_moment_main_numerator, "ly:moment-main-numerator", 1, 0, 0, (SCM mom), @@ -130,7 +141,7 @@ LY_DEFINE (ly_moment_main_numerator, "ly:moment-main-numerator", LY_ASSERT_SMOB (Moment, mom, 1); Moment *ma = unsmob_moment (mom); - return scm_from_int (ma->main_part_.numerator ()); + return scm_from_int64 (ma->main_part_.numerator ()); } LY_DEFINE (ly_moment_main_denominator, "ly:moment-main-denominator", @@ -140,7 +151,7 @@ LY_DEFINE (ly_moment_main_denominator, "ly:moment-main-denominator", LY_ASSERT_SMOB (Moment, mom, 1); Moment *ma = unsmob_moment (mom); - return scm_from_int (ma->main_part_.denominator ()); + return scm_from_int64 (ma->main_part_.denominator ()); } LY_DEFINE (ly_moment_less_p, "ly:moment