Bring back mis-named pdfioContentTextNextLine.

This commit is contained in:
Michael R Sweet
2023-12-05 13:33:07 -05:00
parent 16c8b830b8
commit 86d842167a
5 changed files with 18 additions and 4 deletions

View File

@@ -1198,6 +1198,20 @@ pdfioContentTextNewLine(
}
//
// 'pdfioContentTextNextLine()' - Legacy function name preserved for binary compatibility.
//
// @private@
//
bool // O - `true` on success, `false` on failure
pdfioContentTextNextLine(
pdfio_stream_t *st) // I - Stream
{
return (pdfioStreamPuts(st, "T*\n"));
}
//
// 'pdfioContentTextNewLineShow()' - Move to the next line and show text.
//