forked from qt-creator/qt-creator
Kill ";;" at end of statement
Change-Id: I177094f19978e07f85e42b34701d8f03cd26665e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
@@ -5122,7 +5122,7 @@ bool FakeVimHandler::Private::handleExSubstituteCommand(const ExCommand &cmd)
|
||||
int pos1 = findUnescaped(separator, line, 1);
|
||||
if (pos1 == -1)
|
||||
return false;
|
||||
int pos2 = findUnescaped(separator, line, pos1 + 1);;
|
||||
int pos2 = findUnescaped(separator, line, pos1 + 1);
|
||||
if (pos2 == -1)
|
||||
pos2 = line.size();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user