From c6dee6cfe0164a862a2b2d07263950e42ea8f31f Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Fri, 14 Oct 2011 13:57:48 +0000 Subject: [PATCH] Fix parsing of branch names with spaces. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39853 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetBranch.cpp | 3 ++- status.20x | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/insets/InsetBranch.cpp b/src/insets/InsetBranch.cpp index 01d9cdcefe..f0920956cd 100644 --- a/src/insets/InsetBranch.cpp +++ b/src/insets/InsetBranch.cpp @@ -314,7 +314,8 @@ void InsetBranchParams::write(ostream & os) const void InsetBranchParams::read(Lexer & lex) { - lex >> branch; + lex.eatLine(); + branch = lex.getDocString(); } } // namespace lyx diff --git a/status.20x b/status.20x index dd1f573b29..cbe4305455 100644 --- a/status.20x +++ b/status.20x @@ -72,6 +72,8 @@ What's new - Fix execution of biber with MikTeX. +- Fix parsing of branch names containing spaces. + - Fix output of multirow table cell borders (bug 7578). - Fix ASCII export for branch inset (bug 7720). -- 2.39.5