small fix to wrap-line

--HG--
branch : pmacs2
This commit is contained in:
moculus 2007-11-14 05:21:23 +00:00
parent dedd070591
commit e0ee3dac6f
1 changed files with 1 additions and 1 deletions

View File

@ -701,7 +701,7 @@ class WrapLine(Method):
del tokens[:i]
x, y = self._clear_preceeding_spaces(tokens, x, y)
if tokens:
lines.append(''.join(tokens))
lines.append(''.join(tokens) + ' ')
return lines, x, y
def _execute(self, w, **vargs):