Remove useless semicolons.

This commit is contained in:
js 2008-08-09 20:14:24 +00:00
parent 4aa33d3421
commit 3e0ed305a8
1 changed files with 2 additions and 2 deletions

View File

@ -449,8 +449,8 @@ class ConversationTextview:
end_iter = begin_iter.copy()
# XXX: Is there a nicer way?
end_iter.forward_char();
end_iter.forward_char();
end_iter.forward_char()
end_iter.forward_char()
buffer.delete(begin_iter, end_iter)
buffer.delete_mark(self.xep0184_marks[id])