X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpfb-scheme.cc;h=34d159cf044cc55dab725c2cc9418827822c0205;hb=4a401ca1c60f428daa242dbdd102fdb3f327ebfb;hp=730442ef05bf781b130ed7d6b0397f5c16a2ef8f;hpb=8370d0245cc227ed2ab9b4e92f0ab220d7de2f21;p=lilypond.git diff --git a/lily/pfb-scheme.cc b/lily/pfb-scheme.cc index 730442ef05..34d159cf04 100644 --- a/lily/pfb-scheme.cc +++ b/lily/pfb-scheme.cc @@ -7,8 +7,9 @@ #include "warn.hh" LY_DEFINE (ly_pfb_2_pfa, "ly:pfb->pfa", - 1, 0, 0, (SCM pfb_file_name), - "Convert the contents of a PFB file to PFA.") + 1, 0, 0, (SCM pfb_file_name), + "Convert the contents of a Type@tie{}1 font in PFB format" + " to PFA format.") { LY_ASSERT_TYPE (scm_is_string, pfb_file_name, 1); @@ -16,10 +17,10 @@ LY_DEFINE (ly_pfb_2_pfa, "ly:pfb->pfa", if (be_verbose_global) progress_indication ("\n[" + file_name); - + vector pfb_string = gulp_file (file_name, 0); char *pfa = pfb2pfa ((Byte *) &pfb_string[0], pfb_string.size ()); - + SCM pfa_scm = scm_from_locale_string (pfa); free (pfa); @@ -30,9 +31,9 @@ LY_DEFINE (ly_pfb_2_pfa, "ly:pfb->pfa", } LY_DEFINE (ly_otf_2_cff, "ly:otf->cff", - 1, 0, 0, (SCM otf_file_name), - "Convert the contents of an OTF file to a CFF file," - " returning it as a string.") + 1, 0, 0, (SCM otf_file_name), + "Convert the contents of an OTF file to a CFF file," + " returning it as a string.") { LY_ASSERT_TYPE (scm_is_string, otf_file_name, 1); @@ -44,7 +45,7 @@ LY_DEFINE (ly_otf_2_cff, "ly:otf->cff", string table = get_otf_table (face, "CFF "); SCM asscm = scm_from_locale_stringn ((char *) table.data (), - table.length ()); + table.length ()); if (be_verbose_global) progress_indication ("]");