]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/pango-select-scheme.cc
Merge branch 'cvs-head' of ssh+git://hanwen@repo.or.cz/srv/git/lilypond into master...
[lilypond.git] / lily / pango-select-scheme.cc
index 5a1e54835211bb503327382d0644985301e939ed..89330c842ab88a263c49669f2878f8c550ddb93f 100644 (file)
@@ -1,10 +1,9 @@
 /*
-  pango-select-scheme.cc --  implement Pango descr <-> string bindings
+  pango-select-scheme.cc -- implement Pango descr <-> string bindings
 
   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