From e0ee3dac6f620aa94e12f38c5eed200c3d38bfe2 Mon Sep 17 00:00:00 2001 From: moculus Date: Wed, 14 Nov 2007 05:21:23 +0000 Subject: [PATCH] small fix to wrap-line --HG-- branch : pmacs2 --- method.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/method.py b/method.py index 7f6cd3f..e271328 100644 --- a/method.py +++ b/method.py @@ -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):