The branch, 2.0.x, has been updated.

- Log -----------------------------------------------------------------

commit 70ebf64c3f6d103410bd27c51cb743f0aa8ad5a6
Author: Uwe Stöhr <[email protected]>
Date:   Sun Mar 10 16:19:05 2013 +0100

    tex2lyx/Parser.cpp: backport [fb64fe613/lyxgit] to fix the regression 
introduced after the release of LyX 2.0.5 (bug #8525)

diff --git a/src/tex2lyx/Parser.cpp b/src/tex2lyx/Parser.cpp
index 0067f88..428f7ef 100644
--- a/src/tex2lyx/Parser.cpp
+++ b/src/tex2lyx/Parser.cpp
@@ -400,7 +400,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

Reply via email to