]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/lib_colorset.c
ncurses 6.2 - patch 20200404
[ncurses.git] / ncurses / base / lib_colorset.c
index 831efdc8ecd3c6f3f1e2085ae3ada3e935ab894e..387edef61b23ffad618f14862d23a5534f3a6997 100644 (file)
@@ -1,5 +1,6 @@
 /****************************************************************************
- * Copyright (c) 1998-2005,2009 Free Software Foundation, Inc.              *
+ * Copyright 2020 Thomas E. Dickey                                          *
+ * Copyright 1998-2014,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            *
 #include <curses.priv.h>
 #include <ctype.h>
 
-MODULE_ID("$Id: lib_colorset.c,v 1.12 2009/01/25 00:44:40 tom Exp $")
+MODULE_ID("$Id: lib_colorset.c,v 1.16 2020/02/02 23:34:34 tom Exp $")
 
 NCURSES_EXPORT(int)
-wcolor_set(WINDOW *win, short color_pair_number, void *opts)
+wcolor_set(WINDOW *win, NCURSES_PAIRS_T pair_arg, void *opts)
 {
     int code = ERR;
+    int color_pair = pair_arg;
 
-    T((T_CALLED("wcolor_set(%p,%d)"), win, color_pair_number));
+    T((T_CALLED("wcolor_set(%p,%d)"), (void *) win, color_pair));
+    set_extended_pair(opts, color_pair);
     if (win
-       && !opts
        && (SP != 0)
-       && (color_pair_number >= 0)
-       && (color_pair_number < SP->_pair_limit)) {
+       && (color_pair >= 0)
+       && (color_pair < SP->_pair_limit)) {
        TR(TRACE_ATTRS, ("... current %ld", (long) GET_WINDOW_PAIR(win)));
-       SET_WINDOW_PAIR(win, color_pair_number);
-       if_EXT_COLORS(win->_color = color_pair_number);
+       SET_WINDOW_PAIR(win, color_pair);
+       if_EXT_COLORS(win->_color = color_pair);
        code = OK;
     }
     returnCode(code);