mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 22:14:35 +00:00
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:
parent
658e762995
commit
c6dee6cfe0
@ -314,7 +314,8 @@ void InsetBranchParams::write(ostream & os) const
|
||||
|
||||
void InsetBranchParams::read(Lexer & lex)
|
||||
{
|
||||
lex >> branch;
|
||||
lex.eatLine();
|
||||
branch = lex.getDocString();
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -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).
|
||||
|
Loading…
Reference in New Issue
Block a user