diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-01-11 11:33:54 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-01-11 11:33:54 +0200 |
commit | 99a7a59166453f799894105930e140ca1a8c6fb2 (patch) | |
tree | a96bdb2cfcc6b7dbbde05117533bedb6740e8cb8 /nt | |
parent | b76381c62b94be219ce893f5a58b4506120c462c (diff) | |
download | emacs-99a7a59166453f799894105930e140ca1a8c6fb2.tar.gz |
MS-Windows followup to bugfix #13387.
nt/inc/unistd.h (O_IGNORE_CTTY): Define, as it is unconditionally
used in term.c.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 5 | ||||
-rw-r--r-- | nt/inc/unistd.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index a1c9f3c7cd0..aca1236657b 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,8 @@ +2013-01-11 Eli Zaretskii <eliz@gnu.org> + + * inc/unistd.h (O_IGNORE_CTTY): Define, as it is unconditionally + used in term.c. (Bug#13387) + 2013-01-09 Juanma Barranquero <lekktu@gmail.com> * config.nt: Sync with autogen/config.in. diff --git a/nt/inc/unistd.h b/nt/inc/unistd.h index 5fdd9c8eb88..9c8a64d5ed2 100644 --- a/nt/inc/unistd.h +++ b/nt/inc/unistd.h @@ -27,6 +27,7 @@ extern int faccessat (int, char const *, int, int); #define AT_SYMLINK_NOFOLLOW 4096 #define O_NOCTTY 0 +#define O_IGNORE_CTTY 0 /* This is normally on stdlib.h, but we don't override that header. */ extern int unsetenv (const char *); |