degesch: fix quoting a slash

This commit is contained in:
Přemysl Eric Janouch 2015-04-16 20:51:50 +02:00
parent c421532e6e
commit 0c96563545
1 changed files with 5 additions and 3 deletions

View File

@ -1634,10 +1634,12 @@ process_input (struct app_context *ctx, char *user_input)
if (!(input = iconv_xstrdup (ctx->term_to_utf8, user_input, -1, &len)))
print_error ("character conversion failed for `%s'", "user input");
else if (input[0] == '/' && input[1] != '/')
process_user_command (ctx, input + 1);
else
else if (input[0] != '/')
send_message_to_current_buffer (ctx, input);
else if (input[1] == '/')
send_message_to_current_buffer (ctx, input + 1);
else
process_user_command (ctx, input + 1);
free (input);
}