]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-head-scheme.cc
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / lily / note-head-scheme.cc
index 9b6baea8530864d1751942afb33e76606c459782..c87aab64beb91a4ce9df15ccf69eacf298d9550c 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2006--2010 Han-Wen Nienhuys <hanwen@lilypond.org>
+  Copyright (C) 2006--2015 Han-Wen Nienhuys <hanwen@lilypond.org>
 
 
   LilyPond is free software: you can redistribute it and/or modify
 #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);
+  Font_metric *fm = unsmob<Font_metric> (font_metric);
   LY_ASSERT_TYPE (scm_is_string, glyph_name, 2);
-  
+
   return ly_offset2scm (Note_head::get_stem_attachment (fm, ly_scm2string (glyph_name)));
 }