summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-11-23 22:51:13 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-11-23 22:51:13 +0000
commita01093603b3cf3683718836a8d10c01643881ac4 (patch)
treeeb79f0509de050a1917ddda6df76b6daacd1312d /input.c
parent8da0b1fb990956bc82243dc9693041286d69636a (diff)
Inc region in debug msg.
Diffstat (limited to 'input.c')
-rw-r--r--input.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/input.c b/input.c
index c01d9ba3..53f1be7b 100644
--- a/input.c
+++ b/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')