[Python-checkins] CVS: python/dist/src/Modules parsermodule.c,2.43,2.44

Fred L. Drake python-dev@python.org
Sun, 9 Jul 2000 07:36:15 -0700


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

Modified Files:
	parsermodule.c 
Log Message:

Remove use of HAVE_OLD_CPP to support non-ANSI preprocessors.


Index: parsermodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/parsermodule.c,v
retrieving revision 2.43
retrieving revision 2.44
diff -C2 -r2.43 -r2.44
*** parsermodule.c	2000/07/04 18:48:46	2.43
--- parsermodule.c	2000/07/09 14:36:13	2.44
***************
*** 859,867 ****
  
  
- #ifdef HAVE_OLD_CPP
- #define VALIDATER(n)    static int validate_/**/n(node *tree)
- #else
  #define VALIDATER(n)    static int validate_##n(node *tree)
- #endif
  
  
--- 859,863 ----