328 if atEnd: |
327 if atEnd: |
329 pos = self.editor.positionBefore(pos) |
328 pos = self.editor.positionBefore(pos) |
330 |
329 |
331 if pos >= 0 and self.__checkRegion(pos): |
330 if pos >= 0 and self.__checkRegion(pos): |
332 pos0 = pos |
331 pos0 = pos |
333 pos1 = sys.maxsize |
332 pos1 = 0xffffffff |
334 if not self.editor.charAt(pos).isalnum(): |
333 if not self.editor.charAt(pos).isalnum(): |
335 line, index = self.editor.lineIndexFromPosition(pos) |
334 line, index = self.editor.lineIndexFromPosition(pos) |
336 self.editor.clearIndicator( |
335 self.editor.clearIndicator( |
337 self.indicator, line, index, line, index + 1) |
336 self.indicator, line, index, line, index + 1) |
338 pos1 = self.editor.positionAfter(pos) |
337 pos1 = self.editor.positionAfter(pos) |