Add more precise comment

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16642 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2007-01-10 21:06:09 +00:00
parent ff9f654e41
commit 1f3a70835d

View File

@ -683,8 +683,12 @@ int LaTeX::scanLogFile(TeXErrors & terr)
if (line_count <= 5) { if (line_count <= 5) {
// FIXME UNICODE // FIXME UNICODE
// We have no idea what the encoding of // We have no idea what the encoding of
// the log file is, but it is safe to // the log file is.
// assume it is the current locale one. // It seems that the output from the
// latex compiler itself is pure ASCII,
// but it can include bits from the
// document, so whatever encoding we
// assume here it can be wrong.
terr.insertError(line, from_local8bit(desc), from_local8bit(errstr)); terr.insertError(line, from_local8bit(desc), from_local8bit(errstr));
++num_errors; ++num_errors;
} }