From 0c96563545a1ea8ec484af0a1bfea84b57c0889b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Thu, 16 Apr 2015 20:51:50 +0200 Subject: [PATCH] degesch: fix quoting a slash --- degesch.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/degesch.c b/degesch.c index ede96a8..db07059 100644 --- a/degesch.c +++ b/degesch.c @@ -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); }