mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
Inc region in debug msg.
This commit is contained in:
9
input.c
9
input.c
@ -1,4 +1,4 @@
|
||||
/* $Id: input.c,v 1.35 2007-11-21 14:50:41 nicm Exp $ */
|
||||
/* $Id: input.c,v 1.36 2007-11-23 22:51:13 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -535,9 +535,10 @@ input_handle_sequence(u_char ch, struct input_ctx *ictx)
|
||||
u_int i;
|
||||
struct input_arg *iarg;
|
||||
|
||||
log_debug2("-- sq %zu: %hhu (%c): %u [sx=%u, sy=%u, cx=%u, cy=%u]",
|
||||
ictx->off, ch, ch, ARRAY_LENGTH(&ictx->args),
|
||||
screen_size_x(s), screen_size_y(s), s->cx, s->cy);
|
||||
log_debug2("-- sq %zu: %hhu (%c): %u [sx=%u, sy=%u, cx=%u, cy=%u, "
|
||||
"ru=%u, rl=%u]", ictx->off, ch, ch, ARRAY_LENGTH(&ictx->args),
|
||||
screen_size_x(s), screen_size_y(s), s->cx, s->cy, s->rupper,
|
||||
s->rlower);
|
||||
for (i = 0; i < ARRAY_LENGTH(&ictx->args); i++) {
|
||||
iarg = &ARRAY_ITEM(&ictx->args, i);
|
||||
if (*iarg->data != '\0')
|
||||
|
Reference in New Issue
Block a user