X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Ffoldkeys.c;fp=test%2Ffoldkeys.c;h=f7ecfd97b9195c8fb41cd4e303538c7d8556a2d2;hp=30d4b7df57b14106098e50412a999f6fe7c5fcb4;hb=af3d0ee323cbb22d2a7596d564bf68f7307f5076;hpb=dee978d1ba016c8f327516f684900f95ee7a2b30 diff --git a/test/foldkeys.c b/test/foldkeys.c index 30d4b7df..f7ecfd97 100644 --- a/test/foldkeys.c +++ b/test/foldkeys.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2006,2016 Free Software Foundation, Inc. * + * Copyright (c) 2006-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 +29,7 @@ /* * Author: Thomas E. Dickey, 2006 * - * $Id: foldkeys.c,v 1.5 2016/09/04 20:49:06 tom Exp $ + * $Id: foldkeys.c,v 1.6 2017/06/17 19:36:33 tom Exp $ * * Demonstrate a method for altering key definitions at runtime. * @@ -209,9 +209,13 @@ main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED) struct timeval current, previous; #endif + if (newterm(0, stdout, stdin) == 0) { + fprintf(stderr, "Cannot initialize terminal\n"); + ExitProgram(EXIT_FAILURE); + } + unlink(MY_LOGFILE); - newterm(0, stdout, stdin); (void) cbreak(); /* take input chars one at a time, no wait for \n */ (void) noecho(); /* don't echo input */