used, unused variables

some variables marked as unused, are now actually used
some unused variables are eliminated or commented out
This commit is contained in:
nhmall
2024-03-16 12:53:58 -04:00
parent cad4d87101
commit 295d6e257c
10 changed files with 24 additions and 21 deletions
+2 -2
View File
@@ -99,7 +99,7 @@ set_window_position(int *winx, int *winy, int *winw, int *winh,
void
curses_create_main_windows(void)
{
int min_message_height UNUSED = 1;
/* int min_message_height = 1; */
int message_orientation = 0;
int status_orientation = 0;
int border_space = 0;
@@ -133,7 +133,7 @@ curses_create_main_windows(void)
}
if ((term_cols - border_space) < COLNO) {
min_message_height++;
/* min_message_height++; */
}
/* Determine status window orientation */