commit f5bbed75d021b84b181ede1d793a7401f928043c
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Mon Jun 30 23:55:35 2025 +0200

    console-client ncursesw: Fix confusion between color pair and video attribute
    
    COLOR_PAIR takes a color pair, it does not produce one.

diff --git a/console-client/ncursesw.c b/console-client/ncursesw.c
index ce62660c..116f86cc 100644
--- a/console-client/ncursesw.c
+++ b/console-client/ncursesw.c
@@ -438,7 +438,7 @@ conchar_attr_to_attr (conchar_attr_t attr)
 static inline short
 conchar_attr_to_color_pair (conchar_attr_t attr)
 {
-  return COLOR_PAIR (attr.bgcol << 3 | attr.fgcol);
+  return attr.bgcol << 3 | attr.fgcol;
 }
 
 static void
