[Python-checkins] CVS: python/dist/src/Modules termios.c,2.29,2.30

Thomas Wouters twouters@users.sourceforge.net
Mon, 11 Jun 2001 08:25:18 -0700


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

Modified Files:
	termios.c 
Log Message:

Protect the use of the VWERASE symbol by an #ifdef, it's apparently missing
on (some versions of ?) AIX.



Index: termios.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/termios.c,v
retrieving revision 2.29
retrieving revision 2.30
diff -C2 -r2.29 -r2.30
*** termios.c	2001/05/22 15:44:15	2.29
--- termios.c	2001/06/11 15:25:16	2.30
***************
*** 543,547 ****
--- 543,549 ----
  	{"VDISCARD", VDISCARD},
  #endif
+ #ifdef VWERASE
  	{"VWERASE", VWERASE},
+ #endif
  	{"VLNEXT", VLNEXT},
  	{"VEOL2", VEOL2},