Get rid of run function

This commit is contained in:
Hackerpilot 2015-06-04 16:35:02 -07:00
parent 81c38d5ee8
commit 017d208405
1 changed files with 1 additions and 10 deletions

View File

@ -34,17 +34,8 @@ import inifiled;
int main(string[] args) int main(string[] args)
{ {
version (unittest) version (unittest)
{
return 0; return 0;
}
else
{
return run(args);
}
}
int run(string[] args)
{
bool sloc; bool sloc;
bool highlight; bool highlight;
bool ctags; bool ctags;
@ -289,7 +280,7 @@ string[] expandArgs(string[] args)
return false; return false;
} }
} }
string[] rVal; string[] rVal;
if (args.length == 1) if (args.length == 1)
args ~= "."; args ~= ".";