libgnt/libgnt

64c9db40a5a4
remove is_buddylist from the irssi window manager

remove the is_buddylist function and usage from the irssi window manager. Fixes LIBGNT-6

Testing Done:
Ran most of the demos, namely multiwin with the irssi window manager to make sure everything was still working.

Bugs closed: LIBGNT-6

Reviewed at https://reviews.imfreedom.org/r/199/
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}