diff options
-rw-r--r-- | degesch.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -9051,12 +9051,6 @@ jump_to_buffer (struct app_context *ctx, int n) } static void -await_mirc_escape (struct app_context *ctx) -{ - ctx->awaiting_mirc_escape = true; -} - -static void exec_backlog_helper (const char *command, FILE *backlog) { dup2 (fileno (backlog), STDIN_FILENO); @@ -9243,7 +9237,7 @@ on_readline_insert_attribute (int count, int key) (void) key; struct app_context *ctx = g_ctx; - await_mirc_escape (ctx); + ctx->awaiting_mirc_escape = true; return 0; } @@ -9426,7 +9420,7 @@ on_editline_insert_attribute (EditLine *editline, int key) (void) editline; (void) key; - await_mirc_escape (g_ctx); + g_ctx->awaiting_mirc_escape = true; return CC_NORM; } |