}
if (SLtt_Screen_Rows <= 0)
{
- if ((cp = getenv ("LINES")) != NULL)
- {
- SLtt_Screen_Rows = atoi (cp);
- }
- else
+ if ((cp = getenv ("LINES")) != NULL && mutt_atoi (cp, &SLtt_Screen_Rows) < 0)
SLtt_Screen_Rows = 24;
}
if (SLtt_Screen_Cols <= 0)
{
- if ((cp = getenv ("COLUMNS")) != NULL)
- SLtt_Screen_Cols = atoi (cp);
- else
+ if ((cp = getenv ("COLUMNS")) != NULL && mutt_atoi (cp, &SLtt_Screen_Cols) < 0)
SLtt_Screen_Cols = 80;
}
#ifdef USE_SLANG_CURSES