From c00f6cd3c63e01c84220b607eccf5a2ba2df8f63 Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Fri, 30 Nov 2012 16:12:26 +0000 Subject: Only recognise DECCPR as a position report, so it is distinct from F3 --- demo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'demo.c') diff --git a/demo.c b/demo.c index 646fe9a..2cd8ebc 100644 --- a/demo.c +++ b/demo.c @@ -61,12 +61,12 @@ int main(int argc, char *argv[]) if(key.type == TERMKEY_TYPE_MOUSE) { int line, col; termkey_interpret_mouse(tk, &key, NULL, NULL, &line, &col); - printf("%s at line=%d, col=%d)\n", buffer, line, col); + printf("%s at line=%d, col=%d\n", buffer, line, col); } else if(key.type == TERMKEY_TYPE_POSITION) { int line, col; termkey_interpret_position(tk, &key, &line, &col); - printf("Cursor position report at line=%d, col=%d)\n", line, col); + printf("Cursor position report at line=%d, col=%d\n", line, col); } else { printf("%s\n", buffer); @@ -80,7 +80,7 @@ int main(int argc, char *argv[]) if(key.type == TERMKEY_TYPE_UNICODE && key.modifiers == 0 && key.code.codepoint == '?') { - printf("\033[6n"); + printf("\033[?6n"); fflush(stdout); } } -- cgit v1.2.3