Fixed a small bug.

This commit is contained in:
Holger Rapp 2013-10-23 08:10:58 +02:00
parent ef2c657721
commit ce28c27285

View File

@ -105,13 +105,14 @@ class _CleverReplace(object):
class TextObjectTransformation(object): class TextObjectTransformation(object):
def __init__(self, token): def __init__(self, token):
self._convert_to_ascii = False
self._find = None self._find = None
if token.search is None: if token.search is None:
return return
flags = 0 flags = 0
self._match_this_many = 1 self._match_this_many = 1
self._convert_to_ascii = False
if token.options: if token.options:
if "g" in token.options: if "g" in token.options:
self._match_this_many = 0 self._match_this_many = 0
@ -144,5 +145,3 @@ class Transformation(Mirror, TextObjectTransformation):
def _get_text(self): def _get_text(self):
return self._transform(self._ts.current_text) return self._transform(self._ts.current_text)