From ce8759554e18e64fe515ea4ec37e7e62796f85c2 Mon Sep 17 00:00:00 2001 From: handa Date: Sat, 24 May 2008 14:17:56 +0000 Subject: [PATCH] (mdebug_dump_flt): Change return value to (MFLT *). --- src/m17n-flt.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/m17n-flt.c b/src/m17n-flt.c index d9d78cc..ed9f83b 100644 --- a/src/m17n-flt.c +++ b/src/m17n-flt.c @@ -2759,7 +2759,17 @@ dump_flt_cmd (FontLayoutStage *stage, int id, int indent) fprintf (stderr, "(predefiend %d)", id); } -void +/***en + @brief Dump a Font Layout Table. + + The mdebug_dump_flt () function prints the Font Layout Table $FLT + in a human readable way to the stderr. $INDENT specifies how many + columns to indent the lines but the first one. + + @return + This function returns $FLT. */ + +MFLT * mdebug_dump_flt (MFLT *flt, int indent) { char *prefix = (char *) alloca (indent + 1); @@ -2784,6 +2794,7 @@ mdebug_dump_flt (MFLT *flt, int indent) stage_idx++; } fprintf (stderr, ")"); + return flt; } /*** @} */ -- 1.7.10.4