[Python-checkins] python/dist/src/Modules _sre.c,2.85,2.86

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Sun, 10 Nov 2002 06:33:28 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv15020/Modules

Modified Files:
	_sre.c 
Log Message:
Make private functions static so we don't pollute the namespace


Index: _sre.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v
retrieving revision 2.85
retrieving revision 2.86
diff -C2 -d -r2.85 -r2.86
*** _sre.c	7 Nov 2002 03:28:56 -0000	2.85
--- _sre.c	10 Nov 2002 14:33:25 -0000	2.86
***************
*** 354,358 ****
  }
  
! void lastmark_restore(SRE_STATE *state, int lastmark)
  {
      if (state->lastmark > lastmark) {
--- 354,359 ----
  }
  
! static void
! lastmark_restore(SRE_STATE *state, int lastmark)
  {
      if (state->lastmark > lastmark) {