(mdebug_dump_flt): Change return value to (MFLT *).
authorhanda <handa>
Sat, 24 May 2008 14:17:56 +0000 (14:17 +0000)
committerhanda <handa>
Sat, 24 May 2008 14:17:56 +0000 (14:17 +0000)
src/m17n-flt.c

index d9d78cc..ed9f83b 100644 (file)
@@ -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;
 }
 
 /*** @} */