The branch, master, has been updated. - Log -----------------------------------------------------------------
commit fb64fe613f502905cf24ff4064643d2a48679f35 Author: Uwe Stöhr <[email protected]> Date: Sun Feb 17 02:38:29 2013 +0100 Parser.cpp: a workaround for bug #8525 diff --git a/src/tex2lyx/Parser.cpp b/src/tex2lyx/Parser.cpp index 547f424..cba6309 100644 --- a/src/tex2lyx/Parser.cpp +++ b/src/tex2lyx/Parser.cpp @@ -462,7 +462,8 @@ Parser::Arg Parser::getFullArg(char left, char right, bool allow_escaping) putback(); return make_pair(false, string()); } else { - for (t = get_token(); good(); t = get_token()) { + while (good()) { + t = get_token(); // Ignore comments if (t.cat() == catComment) { if (!t.cs().empty()) ----------------------------------------------------------------------- Summary of changes: src/tex2lyx/Parser.cpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) hooks/post-receive -- The LyX Source Repository
