BufferParams: Remove superfluous '\n'

This extra '\n' seems to have been an unintended side-effect of d7eaaba9 (Juergen Spitzmueller, "support for CJK font argument"; Jun 5 2008).
This commit is contained in:
Vincent van Ravesteijn 2012-06-25 11:24:04 +02:00
parent e20238e21f
commit 8941e980b9

View File

@ -997,7 +997,7 @@ void BufferParams::writeFile(ostream & os) const
if (!fonts_cjk.empty()) {
os << "\\font_cjk " << fonts_cjk << '\n';
}
os << "\n\\graphics " << graphics_driver << '\n';
os << "\\graphics " << graphics_driver << '\n';
os << "\\default_output_format " << default_output_format << '\n';
os << "\\output_sync " << output_sync << '\n';
if (!output_sync_macro.empty())