X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=resize.c;h=8c750da02720f0a6af01c8b63ddbd94bbe23d8c7;hp=81cd729ab5e91f154d8f7d74b55537348dad756d;hb=b777618bc61046875b5c79c7126f64496c6e5a93;hpb=f404a0ca916be07049af51a3022baaaaab94def6 diff --git a/resize.c b/resize.c index 81cd729..8c750da 100644 --- a/resize.c +++ b/resize.c @@ -1,20 +1,11 @@ /* + * Copyright notice from original mutt: * Copyright (C) 1996-2000 Michael R. Elkins - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. - */ + * + * This file is part of mutt-ng, see http://www.muttng.org/. + * It's licensed under the GNU General Public License, + * please see the file GPL in the top level source directory. + */ #if HAVE_CONFIG_H # include "config.h" @@ -42,32 +33,28 @@ void mutt_resize_screen (void) char *cp; int fd; struct winsize w; + #ifdef HAVE_RESIZETERM int SLtt_Screen_Rows, SLtt_Screen_Cols; #endif SLtt_Screen_Rows = -1; SLtt_Screen_Cols = -1; - if ((fd = open ("/dev/tty", O_RDONLY)) != -1) - { - if (ioctl (fd, TIOCGWINSZ, &w) != -1) - { + if ((fd = open ("/dev/tty", O_RDONLY)) != -1) { + if (ioctl (fd, TIOCGWINSZ, &w) != -1) { SLtt_Screen_Rows = w.ws_row; SLtt_Screen_Cols = w.ws_col; } close (fd); } - if (SLtt_Screen_Rows <= 0) - { - if ((cp = getenv ("LINES")) != NULL) - { + if (SLtt_Screen_Rows <= 0) { + if ((cp = getenv ("LINES")) != NULL) { SLtt_Screen_Rows = atoi (cp); } else SLtt_Screen_Rows = 24; } - if (SLtt_Screen_Cols <= 0) - { + if (SLtt_Screen_Cols <= 0) { if ((cp = getenv ("COLUMNS")) != NULL) SLtt_Screen_Cols = atoi (cp); else