never wrap less than 8

This commit is contained in:
Mattias Andrée 2012-08-21 04:45:05 +02:00
parent 52fe45889a
commit 6088f79369

View file

@ -958,6 +958,8 @@ class Backend():
wrap = None
if self.wrapcolumn is not None:
wrap = self.wrapcolumn - left
if wrap < 8:
wrap = 8
msg = self.message
if wrap is not None: