diff options
| author | Karoly Lorentey | 2003-12-30 17:51:52 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2003-12-30 17:51:52 +0000 |
| commit | 9d9f18127ffc1bc26358a5d48917ef4e4bafbddc (patch) | |
| tree | 93d4dd7a09a58153d24ae26641197944b9c55365 /src | |
| parent | 22de1e79e7773ca95c6a6dddcdd408f3a3b7d5b2 (diff) | |
| download | emacs-9d9f18127ffc1bc26358a5d48917ef4e4bafbddc.tar.gz emacs-9d9f18127ffc1bc26358a5d48917ef4e4bafbddc.zip | |
Undo patch-23. I need a coffee.
src/sysdep.c (sys_select): Restore previous #ifdef.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-26
Diffstat (limited to 'src')
| -rw-r--r-- | src/sysdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index cc5ef0c5511..b3a46c77eb3 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -2499,7 +2499,7 @@ select_alarm () | |||
| 2499 | longjmp (read_alarm_throw, 1); | 2499 | longjmp (read_alarm_throw, 1); |
| 2500 | } | 2500 | } |
| 2501 | 2501 | ||
| 2502 | #if (!defined (HAVE_SELECT) || defined (BROKEN_SELECT_NON_X)) && !defined (WINDOWSNT) | 2502 | #ifndef WINDOWSNT |
| 2503 | /* Only rfds are checked. */ | 2503 | /* Only rfds are checked. */ |
| 2504 | int | 2504 | int |
| 2505 | sys_select (nfds, rfds, wfds, efds, timeout) | 2505 | sys_select (nfds, rfds, wfds, efds, timeout) |
| @@ -2631,7 +2631,7 @@ sys_select (nfds, rfds, wfds, efds, timeout) | |||
| 2631 | } | 2631 | } |
| 2632 | return ravail; | 2632 | return ravail; |
| 2633 | } | 2633 | } |
| 2634 | #endif /* (!defined (HAVE_SELECT) || defined (BROKEN_SELECT_NON_X)) && !defined (WINDOWSNT) */ | 2634 | #endif not WINDOWSNT |
| 2635 | 2635 | ||
| 2636 | /* Read keyboard input into the standard buffer, | 2636 | /* Read keyboard input into the standard buffer, |
| 2637 | waiting for at least one character. */ | 2637 | waiting for at least one character. */ |