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

Fred L. Drake fdrake@users.sourceforge.net
Mon, 18 Jun 2001 14:05:07 -0700


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

Modified Files:
      Tag: release21-maint
	termios.c 
Log Message:

Fix my own typo: protect the FLUSHO usage with "#ifdef FLUSHO", not
"#ifndef FLUSHO".


Index: termios.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/termios.c,v
retrieving revision 2.24.2.5
retrieving revision 2.24.2.6
diff -C2 -r2.24.2.5 -r2.24.2.6
*** termios.c	2001/06/16 20:46:10	2.24.2.5
--- termios.c	2001/06/18 21:05:04	2.24.2.6
***************
*** 517,521 ****
  	{"ECHOKE", ECHOKE},
  #endif
! #ifndef FLUSHO
  	{"FLUSHO", FLUSHO},
  #endif
--- 517,521 ----
  	{"ECHOKE", ECHOKE},
  #endif
! #ifdef FLUSHO
  	{"FLUSHO", FLUSHO},
  #endif