Drop the FEFF prefix on Unicode strings.

This commit is contained in:
Michael R Sweet
2023-11-19 07:30:17 -05:00
parent 3f0aad7564
commit 088646e1cf
3 changed files with 4 additions and 2 deletions

View File

@@ -3053,7 +3053,7 @@ write_string(pdfio_stream_t *st, // I - Stream
// Start the string...
if (!pdfioStreamPuts(st, unicode ? "<FEFF" : "("))
if (!pdfioStreamPuts(st, unicode ? "<" : "("))
return (false);
// Loop through the string, handling UTF-8 as needed...