diff options
| author | Ken Raeburn | 2016-12-30 17:51:35 -0500 |
|---|---|---|
| committer | Ken Raeburn | 2016-12-30 17:51:35 -0500 |
| commit | 53d5bd786130a937a0e691e0c470675fe9c55485 (patch) | |
| tree | da387b42f9e4ae5b9f09201ea4417c956e7022eb /src | |
| parent | 064701dc2048722a7ebd5b602e8c060bf3da538e (diff) | |
| download | emacs-53d5bd786130a937a0e691e0c470675fe9c55485.tar.gz emacs-53d5bd786130a937a0e691e0c470675fe9c55485.zip | |
Don't call xg_select for a NextStep build.
NextStep builds use glib but don't use xg_select.
* src/process.c (wait_reading_process_output): Don't call xg_select
for a NextStep build.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index c0c52c232b9..0d88b2ce285 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -5341,8 +5341,8 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd, | |||
| 5341 | } | 5341 | } |
| 5342 | #endif | 5342 | #endif |
| 5343 | 5343 | ||
| 5344 | /* HAVE_GLIB builds call thread_select in xgselect.c. */ | 5344 | /* Non-macOS HAVE_GLIB builds call thread_select in xgselect.c. */ |
| 5345 | #ifdef HAVE_GLIB | 5345 | #if defined HAVE_GLIB && !defined HAVE_NS |
| 5346 | nfds = xg_select (max_desc + 1, | 5346 | nfds = xg_select (max_desc + 1, |
| 5347 | &Available, (check_write ? &Writeok : 0), | 5347 | &Available, (check_write ? &Writeok : 0), |
| 5348 | NULL, &timeout, NULL); | 5348 | NULL, &timeout, NULL); |