diff options
Diffstat (limited to '')
-rw-r--r-- | commands.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/commands.go b/commands.go index da312ca..797878e 100644 --- a/commands.go +++ b/commands.go @@ -412,10 +412,6 @@ func fieldsN(s string, n int) []string { } func parseCommand(s string) (command, args string, isCommand bool) { - if s == "" { - return "", "", false - } - if s[0] != '/' { return "", s, false } |