Richard Heck 843fa219b6 Fix convert_spaceinset again.
The problem here is that
  for i in range(len(document.body)):
sets the range BEFORE we do any of our manipulations. But those manipulations 
can make document.body longer. As a result, we can fail to test some lines.
Instead, use:
  while i < len(document.body):
and increment i in the while loop.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25050 a592a061-630c-0410-9148-cb99ea01b6c8
2008-06-01 14:22:11 +00:00
..
2007-12-02 22:10:26 +00:00
2008-04-20 03:20:44 +00:00
2008-06-01 14:22:11 +00:00
2008-05-29 11:45:00 +00:00
2003-10-13 09:50:10 +00:00
2003-10-13 09:50:10 +00:00
2008-05-25 08:49:15 +00:00
2008-03-29 23:25:40 +00:00
2008-02-19 07:14:05 +00:00
2008-02-07 20:38:04 +00:00