Eat spaces after \end_inset

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2547 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dekel Tsur 2001-08-18 12:02:40 +00:00
parent d203bbda3e
commit 3a0fbd0a90
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-08-18 Dekel Tsur <dekelts@tau.ac.il>
* math_parser.C (Parser): Eat spaces after \end_inset
2001-08-17 Lars Gullik Bjønnes <larsbj@birdstep.com>
* math_parser.C (tokenize): fix typo

View File

@ -286,6 +286,7 @@ Parser::Parser(LyXLex & lexer)
: lineno_(lexer.getLineNo()), pos_(0), curr_num_(false)
{
tokenize(lexer.getStream());
lexer.eatLine();
}