From 996c7c0ce2f75b82b32c43d64c350fd71b05e0cd Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 27 Apr 2010 21:16:34 +0000 Subject: [PATCH] Remove now-obsolete prefix size clip. --- Console.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Console.cpp b/Console.cpp index c4303f6..3fe2310 100644 --- a/Console.cpp +++ b/Console.cpp @@ -358,12 +358,6 @@ static char **Complete(const char *word, int start, int end) { if (count == 0) return NULL; - if (!common.empty()) { - size_t size(prefix.str().size()); - _assert(common.size() >= size); - common = common.substr(size); - } - size_t colon(common.find(':')); if (colon != std::string::npos) common = common.substr(0, colon + 1); -- 2.49.0