mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix parsing of branch names with spaces.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39851 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1db7ad00fe
commit
4b3bea7054
@ -314,7 +314,8 @@ void InsetBranchParams::write(ostream & os) const
|
||||
|
||||
void InsetBranchParams::read(Lexer & lex)
|
||||
{
|
||||
lex >> branch;
|
||||
lex.eatLine();
|
||||
branch = branch = lex.getDocString();
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
Loading…
Reference in New Issue
Block a user