José Matos wrote: > Therefore I would like to suspend any commit to the repository with the > single exception of the above files. > > If you have any change you would like to have committed before beta > please post it for discussion.
The attached small patch refines the log file parsing further and prevents an exception detected by Bennett. (Boost::regex throws an exception if the input is too large, which happens when the merging of lines is too excessive; I know we should probably catch this exceptions, but as it is, it helps finding glitches in the line break check). Can I apply please? Jürgen
Index: src/LaTeX.C =================================================================== --- src/LaTeX.C (Revision 17240) +++ src/LaTeX.C (Arbeitskopie) @@ -891,9 +891,10 @@ // Here we exclude some cases where we are sure // that there is no continued filename if (prefixIs(token, "File:") || prefixIs(token, "(Font)") - || prefixIs(token, "Package:") + || prefixIs(token, "Package:") || prefixIs(token, "Language:") - || prefixIs(token, "LaTeX Font Info:") + || prefixIs(token, "LaTeX Info:") + || prefixIs(token, "LaTeX Font Info:") || prefixIs(token, "\\openout[") || prefixIs(token, "))")) lastline = string();