]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/widechar/lib_vid_attr.c
ncurses 6.5 - patch 20240504
[ncurses.git] / ncurses / widechar / lib_vid_attr.c
index e167bebeec649bb59a20b9c03c8d851716d2a638..f108b307d9a7b4a196460f29517a2e13591f30e0 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright 2018-2019,2020 Thomas E. Dickey                                *
+ * Copyright 2018-2020,2023 Thomas E. Dickey                                *
  * Copyright 2002-2014,2017 Free Software Foundation, Inc.                  *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
@@ -37,7 +37,7 @@
 #define CUR SP_TERMTYPE
 #endif
 
-MODULE_ID("$Id: lib_vid_attr.c,v 1.28 2020/02/02 23:34:34 tom Exp $")
+MODULE_ID("$Id: lib_vid_attr.c,v 1.31 2023/04/28 20:59:34 tom Exp $")
 
 #define doPut(mode) \
        TPUTS_TRACE(#mode); \
@@ -181,6 +181,7 @@ NCURSES_SP_NAME(vid_puts) (NCURSES_SP_DCLx
                    TurnOff(A_ITALIC, exit_italics_mode);
                }
 #endif
+               (void) turn_off;
            }
            previous_attr &= ALL_BUT_COLOR;
            previous_pair = 0;
@@ -191,16 +192,16 @@ NCURSES_SP_NAME(vid_puts) (NCURSES_SP_DCLx
        if (turn_on || turn_off) {
            TPUTS_TRACE("set_attributes");
            NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx
-                                   TPARM_9(set_attributes,
-                                           (newmode & A_STANDOUT) != 0,
-                                           (newmode & A_UNDERLINE) != 0,
-                                           (newmode & A_REVERSE) != 0,
-                                           (newmode & A_BLINK) != 0,
-                                           (newmode & A_DIM) != 0,
-                                           (newmode & A_BOLD) != 0,
-                                           (newmode & A_INVIS) != 0,
-                                           (newmode & A_PROTECT) != 0,
-                                           (newmode & A_ALTCHARSET) != 0),
+                                   TIPARM_9(set_attributes,
+                                              (newmode & A_STANDOUT) != 0,
+                                              (newmode & A_UNDERLINE) != 0,
+                                              (newmode & A_REVERSE) != 0,
+                                              (newmode & A_BLINK) != 0,
+                                              (newmode & A_DIM) != 0,
+                                              (newmode & A_BOLD) != 0,
+                                              (newmode & A_INVIS) != 0,
+                                              (newmode & A_PROTECT) != 0,
+                                              (newmode & A_ALTCHARSET) != 0),
                                    1, outc);
            previous_attr &= ALL_BUT_COLOR;
            previous_pair = 0;
@@ -212,6 +213,7 @@ NCURSES_SP_NAME(vid_puts) (NCURSES_SP_DCLx
            } else if (turn_off & A_ITALIC) {
                TurnOff(A_ITALIC, exit_italics_mode);
            }
+           (void) turn_off;
        }
 #endif
        SetColorsIf((color_pair != 0) || fix_pair0, previous_attr, previous_pair);
@@ -264,7 +266,6 @@ NCURSES_SP_NAME(vid_puts) (NCURSES_SP_DCLx
        TurnOn(A_VERTICAL,      enter_vertical_hl_mode);
 #endif
        /* *INDENT-ON* */
-
     }
 
     if (reverse)