diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-03-03 02:59:16 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-03-03 02:59:16 (GMT) |
commit | 7bf6833e178696b9815fd4e4c6d1cecc8b46bdd2 (patch) | |
tree | 9da72d3e52c043d4fc5437967ddb9a0f0226b6e9 /Modules/termios.c | |
parent | 38b504e9e3ef3049815779e8c18b62f690ec4ed2 (diff) | |
download | cpython-7bf6833e178696b9815fd4e4c6d1cecc8b46bdd2.zip cpython-7bf6833e178696b9815fd4e4c6d1cecc8b46bdd2.tar.gz cpython-7bf6833e178696b9815fd4e4c6d1cecc8b46bdd2.tar.bz2 |
OS/2 EMX port changes (Modules part of patch #450267):
Modules/
_hotshot.c
dbmmodule.c
fcntlmodule.c
main.c
pwdmodule.c
readline.c
selectmodule.c
signalmodule.c
termios.c
timemodule.c
unicodedata.c
Diffstat (limited to 'Modules/termios.c')
-rw-r--r-- | Modules/termios.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/termios.c b/Modules/termios.c index aaabe60..0c5697f 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -384,7 +384,9 @@ static struct constant { #ifdef OLCUC {"OLCUC", OLCUC}, #endif +#ifdef ONLCR {"ONLCR", ONLCR}, +#endif #ifdef OCRNL {"OCRNL", OCRNL}, #endif @@ -552,7 +554,9 @@ static struct constant { #ifdef VLNEXT {"VLNEXT", VLNEXT}, #endif +#ifdef VEOL2 {"VEOL2", VEOL2}, +#endif #ifdef B460800 |