]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-head-scheme.cc
Fix thinko: corner case bbox handling should also be rounded to integers.
[lilypond.git] / lily / note-head-scheme.cc
index 57919802694ae70582e83e21bf0ffa0106149746..bf0bd991774c99f37a664f23432c15812b000214 100644 (file)
 #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);
-  LY_ASSERT_TYPE(scm_is_string,glyph_name, 2);
+  LY_ASSERT_TYPE (scm_is_string, glyph_name, 2);
   
   return ly_offset2scm (Note_head::get_stem_attachment (fm, ly_scm2string (glyph_name)));
 }