[Python-checkins] python/dist/src/Include node.h,2.21,2.22

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Mon, 16 Sep 2002 20:27:04 -0700


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

Modified Files:
	node.h 
Log Message:
Back out the previous change.  It doesn't save any space on 64-bit
platforms.


Index: node.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/node.h,v
retrieving revision 2.21
retrieving revision 2.22
diff -C2 -d -r2.21 -r2.22
*** node.h	17 Sep 2002 03:24:09 -0000	2.21
--- node.h	17 Sep 2002 03:27:02 -0000	2.22
***************
*** 9,17 ****
  
  typedef struct _node {
      char		*n_str;
-     struct _node	*n_child;
      int			n_lineno;
      int			n_nchildren;
!     short		n_type;
  } node;
  
--- 9,17 ----
  
  typedef struct _node {
+     short		n_type;
      char		*n_str;
      int			n_lineno;
      int			n_nchildren;
!     struct _node	*n_child;
  } node;