X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fsavescreen.c;h=da00d7534dc45ec365ddaa95b1c30dfd0dfba474;hp=d96089dab4a11bd53c537b99767984ae65c8f36f;hb=9b4c4abadc0a29999c5ddad5aa8d769fee28d687;hpb=bfe3845eb1a2ff02a740e917b537e939ec4e44cb diff --git a/test/savescreen.c b/test/savescreen.c index d96089da..da00d753 100644 --- a/test/savescreen.c +++ b/test/savescreen.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 2007-2017,2018 Free Software Foundation, Inc. * + * Copyright 2018-2019,2020 Thomas E. Dickey * + * Copyright 2006-2017,2018 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 * @@ -26,7 +27,7 @@ * authorization. * ****************************************************************************/ /* - * $Id: savescreen.c,v 1.54 2018/12/29 17:25:56 tom Exp $ + * $Id: savescreen.c,v 1.57 2020/02/02 23:34:34 tom Exp $ * * Demonstrate save/restore functions from the curses library. * Thomas Dickey - 2007/7/14 @@ -387,7 +388,7 @@ main(int argc, char *argv[]) while (col++ < cols) { int color = (((r * (g_max + 1)) + g) * (b_max + 1) + b + MAX_ANSI); -#if HAVE_INIT_EXTENDED_COLOR +#if USE_EXTENDED_COLOR init_extended_pair(pair, color, color); #else init_pair(pair, color, color); @@ -495,7 +496,7 @@ main(int argc, char *argv[]) } move(0, 0); } else { - exit_curses(); + stop_curses(); fprintf(stderr, "Cannot open \"%s\"\n", fill_by); ExitProgram(EXIT_FAILURE); } @@ -507,14 +508,14 @@ main(int argc, char *argv[]) * Use the last file as the initial/current screen. */ if (last < 0) { - exit_curses(); + stop_curses(); printf("No screen-dumps given\n"); ExitProgram(EXIT_FAILURE); } which = last; if (load_screen(files[which]) == ERR) { - exit_curses(); + stop_curses(); printf("Cannot load screen-dump %s\n", files[which]); ExitProgram(EXIT_FAILURE); }