stupid bug

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@720 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2000-05-05 12:27:42 +00:00
parent 455bafe129
commit 62f8945783
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-05-05 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/buffer.C (parseSingleLyXformat2Token): stupid bug.
2000-05-05 Juergen Vigna <jug@sad.it>
* src/tabular.[Ch]: now using std:vector instead of arrays for all the

View File

@ -988,7 +988,7 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
par->InsertChar(pos, '-');
par->SetFont(pos, font);
} else if (next_token == "\\protected_separator"
|| next_token == '~') {
|| next_token == "~") {
par->InsertChar(pos, ' ');
par->SetFont(pos, font);
} else {