X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Ffilter.c;h=6cd9206b274d44b1d6646e839c6cba1dabfa52d0;hp=890adda3fbe23caf416a7225e6015e58e3ba3851;hb=a5fe3726f7d4374e9b1551b535c8617b423996f2;hpb=5d8dbcdd9423bf9821db414fd9ec792ccf1f1027 diff --git a/test/filter.c b/test/filter.c index 890adda3..6cd9206b 100644 --- a/test/filter.c +++ b/test/filter.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 1998-2016,2017 Free Software Foundation, Inc. * + * Copyright 2019,2020 Thomas E. Dickey * + * Copyright 1998-2016,2017 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -29,7 +30,7 @@ /* * Author: Thomas E. Dickey 1998 * - * $Id: filter.c,v 1.30 2017/09/08 22:34:05 tom Exp $ + * $Id: filter.c,v 1.35 2020/07/25 22:40:57 tom Exp $ * * An example of the 'filter()' function in ncurses, this program prompts * for commands and executes them (like a command shell). It illustrates @@ -41,6 +42,7 @@ * reset_shell_mode() and reset_prog_mode() functions, we could invoke endwin() * and refresh(), but that does not work any better. */ +#define NEED_KEY_EVENT #include #if HAVE_FILTER @@ -100,12 +102,11 @@ static int new_command(char *buffer, int length, int underline, bool clocked, bool polled) { int code = OK; - int limit; if (polled) { bool done = FALSE; bool first = TRUE; - int y, x; + int y = 0, x = 0; int n; int mark = 0; int used = 0; @@ -113,6 +114,7 @@ new_command(char *buffer, int length, int underline, bool clocked, bool polled) timeout(20); /* no one types 50CPS... */ while (!done) { + int limit; int ch = getch(); buffer[used] = '\0'; @@ -253,7 +255,7 @@ new_command(char *buffer, int length, int underline, bool clocked, bool polled) } attroff(underline); attroff(A_BOLD); - printw("\n"); + refresh(); return code; }