From: Pedro Kroger Date: Fri, 17 Dec 2004 12:37:43 +0000 (+0000) Subject: * lily/font-metric.cc (LY_DEFINE): Fix the docstring. X-Git-Tag: release/2.5.14~411 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7377b480bb7412c3d7fc39ba54aa5737b591fadb;p=lilypond.git * lily/font-metric.cc (LY_DEFINE): Fix the docstring. --- diff --git a/ChangeLog b/ChangeLog index 4c683f8775..d5f67e6f02 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-12-17 Pedro Kroger + + * lily/font-metric.cc (LY_DEFINE): Fix the docstring. + 2004-12-17 Jan Nieuwenhuizen * scm/framework-tex.scm (otf-font-load-command): Bugfix: subfonts diff --git a/lily/font-metric.cc b/lily/font-metric.cc index c4b32af950..3c29320258 100644 --- a/lily/font-metric.cc +++ b/lily/font-metric.cc @@ -165,7 +165,7 @@ LY_DEFINE (ly_get_glyph, "ly:get-glyph", LY_DEFINE (ly_font_glyph_name_to_index, "ly:font-glyph-name-to-index", 2, 0, 0, (SCM font, SCM name), - "Return the index for @{name} in @var{font}.") + "Return the index for @var{name} in @var{font}.") { Font_metric *fm = unsmob_metrics (font); SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric"); @@ -189,7 +189,7 @@ LY_DEFINE (ly_font_index_to_charcode, "ly:font-index-to-charcode", LY_DEFINE (ly_font_glyph_name_to_charcode, "ly:font-glyph-name-to-charcode", 2, 0, 0, (SCM font, SCM name), - "Return the character code for glyph @{name} in @var{font}.") + "Return the character code for glyph @var{name} in @var{font}.") { Font_metric *fm = unsmob_metrics (font); SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");