X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=test%2Fcolor_set.c;h=a6e5e0dd22570d2dc53da156a39d38e7dc081683;hb=205ea499dbbceba5201d997fbd8b6b1f7f29bd50;hp=477d049c8b5e431f721caa961c669f5a561f44bb;hpb=4f84dbbd027e85fc88e2c6be466b3237141e027e;p=ncurses.git diff --git a/test/color_set.c b/test/color_set.c index 477d049c..a6e5e0dd 100644 --- a/test/color_set.c +++ b/test/color_set.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 2003-2012,2014 Free Software Foundation, Inc. * + * Copyright 2020,2020,2022 Thomas E. Dickey * + * Copyright 2003-2012,2014 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: color_set.c,v 1.8 2014/02/01 22:10:42 tom Exp $ + * $Id: color_set.c,v 1.11 2022/04/16 18:26:40 tom Exp $ */ #include @@ -39,13 +40,15 @@ int main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED) { NCURSES_COLOR_T f, b; - int i; + setlocale(LC_ALL, ""); initscr(); cbreak(); noecho(); if (has_colors()) { + int i; + start_color(); (void) pair_content(0, &f, &b);