From: Thomas Wouters Date: Wed, 23 May 2001 11:32:06 +0000 (+0000) Subject: Backport Fred's checkin 2.29: X-Git-Tag: v2.1.1c1~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=50d9fb227b714c1ee412bf23017d74b2838268cc;p=thirdparty%2FPython%2Fcpython.git Backport Fred's checkin 2.29: Correct the sense of a couple of conditional compilations -- used #ifndef when #ifdef was needed. This closes (reallu!) SF bug #417418. --- diff --git a/Modules/termios.c b/Modules/termios.c index 109faf38aa87..9079351c66d4 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -536,10 +536,10 @@ static struct constant { {"VSTOP", VSTOP}, {"VSUSP", VSUSP}, {"VEOL", VEOL}, -#ifndef VREPRINT +#ifdef VREPRINT {"VREPRINT", VREPRINT}, #endif -#ifndef VDISCARD +#ifdef VDISCARD {"VDISCARD", VDISCARD}, #endif {"VWERASE", VWERASE},