comparison finch/libgnt/gntmain.c @ 20225:3c415481a943

applied changes from 388507622896337fe56945f851e3aabee3c0427f through 025faf23aaac403798451974c320c4de6df470d5
author Richard Laager <rlaager@wiktel.com>
date Fri, 28 Sep 2007 15:48:49 +0000
parents 44b4e8bd759b
children d256249b22ea
comparison
equal deleted inserted replaced
20224:31c9fed987db 20225:3c415481a943
407 switch (sig) { 407 switch (sig) {
408 #ifdef SIGWINCH 408 #ifdef SIGWINCH
409 case SIGWINCH: 409 case SIGWINCH:
410 erase(); 410 erase();
411 g_idle_add(refresh_screen, NULL); 411 g_idle_add(refresh_screen, NULL);
412 org_winch_handler(sig); 412 if (org_winch_handler)
413 org_winch_handler(sig);
413 signal(SIGWINCH, sighandler); 414 signal(SIGWINCH, sighandler);
414 break; 415 break;
415 #endif 416 #endif
416 case SIGCHLD: 417 case SIGCHLD:
417 clean_pid(); 418 clean_pid();