X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpfb-scheme.cc;h=89666192a30d4a4bdcd75aa1aa990a82a31ef4c1;hb=1528c75809ebc59d93018dbf59559436f75f082b;hp=29cbe15b4f2835f5b8080f2d632ef52339a276f2;hpb=92918346012f79ef9109ef0c391947af2d3165ca;p=lilypond.git diff --git a/lily/pfb-scheme.cc b/lily/pfb-scheme.cc index 29cbe15b4f..89666192a3 100644 --- a/lily/pfb-scheme.cc +++ b/lily/pfb-scheme.cc @@ -8,14 +8,15 @@ 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.") + "Convert the contents of a Type@tie{}1 font in PFB format" + " to PFA format.") { - LY_ASSERT_FIRST_TYPE(scm_is_string, pfb_file_name); + LY_ASSERT_TYPE (scm_is_string, pfb_file_name, 1); string file_name = ly_scm2string (pfb_file_name); if (be_verbose_global) - progress_indication ("[" + file_name); + progress_indication ("\n[" + file_name); vector pfb_string = gulp_file (file_name, 0); char *pfa = pfb2pfa ((Byte *) &pfb_string[0], pfb_string.size ()); @@ -31,16 +32,16 @@ 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 a OTF file to CFF file, returning it as " - " a string.") + "Convert the contents of an OTF file to a CFF file," + " returning it as a string.") { - LY_ASSERT_FIRST_TYPE(scm_is_string, otf_file_name); + LY_ASSERT_TYPE (scm_is_string, otf_file_name, 1); string file_name = ly_scm2string (otf_file_name); if (be_verbose_global) - progress_indication ("[" + file_name); + progress_indication ("\n[" + file_name); - FT_Face face = open_ft_face (file_name); + FT_Face face = open_ft_face (file_name, 0 /* index */); string table = get_otf_table (face, "CFF "); SCM asscm = scm_from_locale_stringn ((char *) table.data (),