]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/pango-select-scheme.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / pango-select-scheme.cc
index 734fa7a88526f9b460f2f5f347e6d08158cb5397..89330c842ab88a263c49669f2878f8c550ddb93f 100644 (file)
@@ -3,8 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
-
+  (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "config.hh"
 #if HAVE_PANGO_FT2
 #include "pango-font.hh"
 
-LY_DEFINE(ly_make_pango_description_string, "ly:make-pango-description-string",
-         2, 0, 0, (SCM chain, SCM size),
-         "Make a PangoFontDescription string for the property alist @var{chain} at size @var{size}.")
+LY_DEFINE (ly_make_pango_description_string, "ly:make-pango-description-string",
+          2, 0, 0, (SCM chain, SCM size),
+          "Make a PangoFontDescription string for the property alist @var{chain} at size @var{size}.")
 {
-  SCM_ASSERT_TYPE(scm_is_number (size), size, SCM_ARG1, __FUNCTION__, "number");
+  SCM_ASSERT_TYPE (scm_is_number (size), size, SCM_ARG1, __FUNCTION__, "number");
   PangoFontDescription *pfd = properties_to_pango_description (chain, scm_to_double (size));
   char *str = pango_font_description_to_string (pfd);
 
@@ -25,5 +24,5 @@ LY_DEFINE(ly_make_pango_description_string, "ly:make-pango-description-string",
   pango_font_description_free (pfd);
   return scm_str;
 }
-         
+
 #endif