mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
Correct the sense of a couple of conditional compilations -- used #ifndef
when #ifdef was needed. This closes (reallu!) SF bug #417418.
This commit is contained in:
parent
6b4593e338
commit
d0b625d05a
1 changed files with 2 additions and 2 deletions
|
|
@ -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},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue