From 899411bf57ab78e3300b8a376e7cd8ed1a9ea36b Mon Sep 17 00:00:00 2001 From: mycroft Date: Fri, 23 Apr 1993 03:34:42 +0000 Subject: Make CTRL() ANSI-compliant. --- robots/move.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'robots/move.c') diff --git a/robots/move.c b/robots/move.c index 79364440..8da28376 100644 --- a/robots/move.c +++ b/robots/move.c @@ -169,13 +169,13 @@ teleport: refresh(); flush_in(); goto ret; - case CTRL(L): + case CTRL('L'): wrefresh(curscr); break; case EOF: break; default: - putchar(CTRL(G)); + putchar(CTRL('G')); reset_count(); fflush(stdout); break; @@ -240,7 +240,7 @@ int dy, dx; refresh(); } else { - putchar(CTRL(G)); + putchar(CTRL('G')); reset_count(); } return FALSE; -- cgit v1.2.3