From 06fd04011950efdbcb14eead47fe73ec4c2194d6 Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Wed, 25 Apr 2012 18:34:47 +0100 Subject: Bugfix to POSITION reporting - swap line<=>col --- t/31position.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 't/31position.c') diff --git a/t/31position.c b/t/31position.c index baefb8b..bb798c6 100644 --- a/t/31position.c +++ b/t/31position.c @@ -19,8 +19,8 @@ int main(int argc, char *argv[]) is_int(termkey_interpret_position(tk, &key, &line, &col), TERMKEY_RES_KEY, "interpret_position yields RES_KEY"); - is_int(line, 7, "line for position report"); - is_int(col, 15, "column for position report"); + is_int(line, 15, "line for position report"); + is_int(col, 7, "column for position report"); termkey_destroy(tk); -- cgit v1.2.3