X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Flib_restart.c;h=31719093140f3d4c7d9f17730db8552ca9fdfe4f;hp=ca27a0fc4c60bcd32dbe34844f002795a5612cf2;hb=7a27c7d49c2e8b4a1ecbe85b4423d647cbc75ea5;hpb=efd59f16f336b4c4c698ff783e1723f3161026ef diff --git a/ncurses/base/lib_restart.c b/ncurses/base/lib_restart.c index ca27a0fc..31719093 100644 --- a/ncurses/base/lib_restart.c +++ b/ncurses/base/lib_restart.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2002,2006 Free Software Foundation, Inc. * + * Copyright (c) 1998-2006,2007 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -48,7 +48,7 @@ #include /* lines, columns, cur_term */ -MODULE_ID("$Id: lib_restart.c,v 1.6 2006/01/14 15:58:23 tom Exp $") +MODULE_ID("$Id: lib_restart.c,v 1.7 2007/04/19 21:05:25 tom Exp $") NCURSES_EXPORT(int) restartterm(NCURSES_CONST char *termp, int filenum, int *errret) @@ -61,7 +61,6 @@ restartterm(NCURSES_CONST char *termp, int filenum, int *errret) T((T_CALLED("restartterm(%s,%d,%p)"), termp, filenum, errret)); - _nc_handle_sigwinch(0); if (setupterm(termp, filenum, errret) != OK) { result = ERR; } else { @@ -94,6 +93,5 @@ restartterm(NCURSES_CONST char *termp, int filenum, int *errret) result = OK; } - _nc_handle_sigwinch(1); returnCode(result); }