follow-up: program_state variables are int

This commit is contained in:
nhmall
2023-11-17 08:42:43 -05:00
parent 8d1001842d
commit 7903849939

View File

@@ -1682,8 +1682,8 @@ get_menu_coloring(const char *str, int *color, int *attr)
void
getlin(const char *query, register char *bufp)
{
gp.program_state.in_getlin = TRUE;
gp.program_state.in_getlin = 1;
(*windowprocs.win_getlin)(query, bufp);
gp.program_state.in_getlin = FALSE;
gp.program_state.in_getlin = 0;
}
/*windows.c*/