diff options
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 3cc659b0c..18747f24e 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -106,24 +106,6 @@ impHandler(hack) return true; } -impHandler(execute) -{ - const size_t idx = event.args.find(" "); - std::string name; - std::string params; - if (idx == std::string::npos) - { - name = event.args; - } - else - { - name = event.args.substr(0, idx); - params = event.args.substr(idx + 1); - } - execFile(name, name, params, ""); - return true; -} - impHandler(enableHighlight) { if (event.tab) |