diff options
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index b534c8616..77ee7e5b7 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -106,20 +106,6 @@ impHandler(hack) return true; } -impHandler(url) -{ - if (event.tab) - { - std::string url = event.args; - if (!strStartWith(url, "http") && !strStartWith(url, "?")) - url = "http://" + url; - std::string str(strprintf("[@@%s |%s@@]", url.c_str(), event.args.c_str())); - outStringNormal(event.tab, str, str); - return true; - } - return false; -} - impHandler(open) { std::string url = event.args; |