diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-02-06 14:01:16 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-02-06 14:01:16 +0000 |
commit | 446177a8326d6d29591c1e42ec44d0f92e39c466 (patch) | |
tree | 430c7ebaca81a61fe8a4a3245888c3695c348bdf /input.c | |
parent | 4eabd7ec90756952ea4963cdd5d508224a7f1d29 (diff) | |
parent | d150d9b384612c1ee2c52009b996a4466e111049 (diff) | |
download | rtmux-446177a8326d6d29591c1e42ec44d0f92e39c466.tar.gz rtmux-446177a8326d6d29591c1e42ec44d0f92e39c466.tar.bz2 rtmux-446177a8326d6d29591c1e42ec44d0f92e39c466.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -871,9 +871,10 @@ input_parse(struct window_pane *wp) buf = EVBUFFER_DATA(evb); len = EVBUFFER_LENGTH(evb); - notify_input(wp, evb); off = 0; + notify_input(wp, evb); + log_debug("%s: %%%u %s, %zu bytes: %.*s", __func__, wp->id, ictx->state->name, len, (int)len, buf); @@ -1218,11 +1219,13 @@ input_csi_dispatch(struct input_ctx *ictx) if (ictx->flags & INPUT_DISCARD) return (0); - if (input_split(ictx) != 0) - return (0); + log_debug("%s: '%c' \"%s\" \"%s\"", __func__, ictx->ch, ictx->interm_buf, ictx->param_buf); + if (input_split(ictx) != 0) + return (0); + entry = bsearch(ictx, input_csi_table, nitems(input_csi_table), sizeof input_csi_table[0], input_table_compare); if (entry == NULL) { |