Commit d0b625d0 authored by Fred Drake's avatar Fred Drake

Correct the sense of a couple of conditional compilations -- used #ifndef

when #ifdef was needed.

This closes (reallu!) SF bug #417418.
parent 6b4593e3
...@@ -536,10 +536,10 @@ static struct constant { ...@@ -536,10 +536,10 @@ static struct constant {
{"VSTOP", VSTOP}, {"VSTOP", VSTOP},
{"VSUSP", VSUSP}, {"VSUSP", VSUSP},
{"VEOL", VEOL}, {"VEOL", VEOL},
#ifndef VREPRINT #ifdef VREPRINT
{"VREPRINT", VREPRINT}, {"VREPRINT", VREPRINT},
#endif #endif
#ifndef VDISCARD #ifdef VDISCARD
{"VDISCARD", VDISCARD}, {"VDISCARD", VDISCARD},
#endif #endif
{"VWERASE", VWERASE}, {"VWERASE", VWERASE},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment