Skip to content

Commit

Permalink
More cleanup to support partial command names.
Browse files Browse the repository at this point in the history
  • Loading branch information
keforbes committed Mar 10, 2013
1 parent 210c5d3 commit 117edcb
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -363,8 +363,8 @@ public Command parseAndExecute(String first, String command) {
tokens.add("!");
}
else {
tokens.set(0, tok.substring(0, tok.length()-1));
tokens.set(1, "!");
tokens.add(0, tok.substring(0, tok.length()-1));
tokens.add(1, "!");
}
}

Expand Down

0 comments on commit 117edcb

Please sign in to comment.