]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-head-scheme.cc
Run `make grand-replace'.
[lilypond.git] / lily / note-head-scheme.cc
index 621e5311b98f034a671c833fcfc5919889be1f5c..4fc931497702421b2be5b8709b84bb11a93faa0f 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2006--2007 Han-Wen Nienhuys <hanwen@lilypond.org>
+  (c) 2006--2008 Han-Wen Nienhuys <hanwen@lilypond.org>
 
 */
 
 #include "font-metric.hh"
 
 
-LY_DEFINE(ly_note_head__stem_attachment, "ly:note-head::stem-attachment",
+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}.")
+         "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);
-  SCM_ASSERT_TYPE(fm, font_metric, SCM_ARG1, __FUNCTION__, "font metric");
-  SCM_ASSERT_TYPE(scm_is_string (glyph_name), glyph_name, SCM_ARG2, __FUNCTION__, "string");
+  LY_ASSERT_TYPE (scm_is_string, glyph_name, 2);
   
   return ly_offset2scm (Note_head::get_stem_attachment (fm, ly_scm2string (glyph_name)));
 }