X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fnote-head-scheme.cc;fp=lily%2Fnote-head-scheme.cc;h=ef6770888a0c8b295d7a4e9af08363d43d9df04d;hb=32a34dcef0c0041c6d62677487a380b5c8b85712;hp=6698973339862204a3b1c04cc6f43162c211a98d;hpb=f41973ff763d5972a85995b6d40c864281ec6714;p=lilypond.git diff --git a/lily/note-head-scheme.cc b/lily/note-head-scheme.cc index 6698973339..ef6770888a 100644 --- a/lily/note-head-scheme.cc +++ b/lily/note-head-scheme.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2006--2011 Han-Wen Nienhuys + Copyright (C) 2006--2012 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify @@ -21,16 +21,15 @@ #include "note-head.hh" #include "font-metric.hh" - LY_DEFINE (ly_note_head__stem_attachment, "ly:note-head::stem-attachment", - 2, 0, 0, (SCM font_metric, SCM glyph_name), - "Get attachment in @var{font-metric} for attaching a stem to" - " notehead @var{glyph-name}.") + 2, 0, 0, (SCM font_metric, SCM glyph_name), + "Get attachment in @var{font-metric} for attaching a stem to" + " notehead @var{glyph-name}.") { LY_ASSERT_SMOB (Font_metric, font_metric, 1); Font_metric *fm = unsmob_metrics (font_metric); LY_ASSERT_TYPE (scm_is_string, glyph_name, 2); - + return ly_offset2scm (Note_head::get_stem_attachment (fm, ly_scm2string (glyph_name))); }