Commit bf059a60010f5c9a75c03c0fb97a15af3f01c444
1 parent
6c0af084
Replace the 8-bit characters with \x.. in QPDFWriter.cc
This just makes it safer to pull up this file in an editor.
Showing
1 changed file
with
1 additions
and
1 deletions
libqpdf/QPDFWriter.cc
| ... | ... | @@ -1764,7 +1764,7 @@ QPDFWriter::writeHeader() |
| 1764 | 1764 | writeString(version); |
| 1765 | 1765 | // This string of binary characters would not be valid UTF-8, so |
| 1766 | 1766 | // it really should be treated as binary. |
| 1767 | - writeString("\n%¿÷¢þ\n"); | |
| 1767 | + writeString("\n%\xbf\xf7\xa2\xfe\n"); | |
| 1768 | 1768 | writeStringQDF("%QDF-1.0\n\n"); |
| 1769 | 1769 | } |
| 1770 | 1770 | ... | ... |