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
This commit is contained in:
Jürgen Spitzmüller 2011-10-14 13:57:48 +00:00
parent 658e762995
commit c6dee6cfe0
2 changed files with 4 additions and 1 deletions

View File

@ -314,7 +314,8 @@ void InsetBranchParams::write(ostream & os) const
void InsetBranchParams::read(Lexer & lex)
{
lex >> branch;
lex.eatLine();
branch = lex.getDocString();
}
} // namespace lyx

View File

@ -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).