[Python-checkins] CVS: python/dist/src/Modules _cursesmodule.c,2.26,2.27

A.M. Kuchling python-dev@python.org
Tue, 27 Jun 2000 08:01:13 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv13872

Modified Files:
	_cursesmodule.c 
Log Message:
Fix two typos (, instead of ;)


Index: _cursesmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_cursesmodule.c,v
retrieving revision 2.26
retrieving revision 2.27
diff -C2 -r2.26 -r2.27
*** _cursesmodule.c	2000/06/27 03:10:38	2.26
--- _cursesmodule.c	2000/06/27 15:01:10	2.27
***************
*** 1043,1047 ****
        rtn = pnoutrefresh(self->win,
  			 pminrow, pmincol, sminrow, 
! 			 smincol, smaxrow, smaxcol),
        Py_END_ALLOW_THREADS
        return PyCursesCheckERR(rtn, "pnoutrefresh");
--- 1043,1047 ----
        rtn = pnoutrefresh(self->win,
  			 pminrow, pmincol, sminrow, 
! 			 smincol, smaxrow, smaxcol);
        Py_END_ALLOW_THREADS
        return PyCursesCheckERR(rtn, "pnoutrefresh");
***************
*** 1112,1117 ****
        rtn = prefresh(self->win,
  		     pminrow, pmincol, sminrow, 
! 		     smincol, smaxrow, smaxcol),
! 	
        Py_END_ALLOW_THREADS
        return PyCursesCheckERR(rtn, "prefresh");
--- 1112,1116 ----
        rtn = prefresh(self->win,
  		     pminrow, pmincol, sminrow, 
! 		     smincol, smaxrow, smaxcol);
        Py_END_ALLOW_THREADS
        return PyCursesCheckERR(rtn, "prefresh");