another small lyx2lyx fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8976 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2004-09-12 09:48:08 +00:00
parent c7875ca865
commit 3bdb83776c
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
2004-09-12 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* lyx_1_4.lyx: unify warning messages
* lyx_1_4.py (convert_ertbackslash): insert the new line after the
backslash, this did only work by accident in most cases
* lyx_1_4.py: unify warning messages
2004-08-19 José Matos <jamatos@lyx.org>

View File

@ -838,8 +838,8 @@ def convert_ertbackslash(lines, i, ert):
for c in ert:
if c == '\\':
lines[i] = lines[i] + '\\backslash '
lines.insert(i, '')
i = i + 1
lines.insert(i, '')
else:
lines[i] = lines[i] + c
return i