diff options
| author | Dan Nicolaescu | 2009-10-19 05:13:31 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-10-19 05:13:31 +0000 |
| commit | 019d2c4c58da1284eb2e27ebe56f65e46b3beec0 (patch) | |
| tree | 601e03a47c9140b0cae685191289bfb3dd0afb08 | |
| parent | ee6bacd40debc7ca7ec95c6f962ae533e8713a02 (diff) | |
| download | emacs-019d2c4c58da1284eb2e27ebe56f65e46b3beec0.tar.gz emacs-019d2c4c58da1284eb2e27ebe56f65e46b3beec0.zip | |
* process.c (create_pty): Remove conditionals for no longer
supported systems: UNIPLUS and RTU.
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/process.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6efec645f78..97f27d0d14c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * process.c (create_pty): Remove conditionals for no longer | ||
| 4 | supported systems: UNIPLUS and RTU. | ||
| 5 | |||
| 3 | * xterm.c: | 6 | * xterm.c: |
| 4 | * xfns.c: Remove always true condition: XtSpecificationRelease >= 5. | 7 | * xfns.c: Remove always true condition: XtSpecificationRelease >= 5. |
| 5 | 8 | ||
diff --git a/src/process.c b/src/process.c index b405f1ef690..c2fe343ee2d 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2317,12 +2317,12 @@ create_pty (process) | |||
| 2317 | #endif | 2317 | #endif |
| 2318 | if (forkin < 0) | 2318 | if (forkin < 0) |
| 2319 | report_file_error ("Opening pty", Qnil); | 2319 | report_file_error ("Opening pty", Qnil); |
| 2320 | #if defined (RTU) || defined (UNIPLUS) || defined (DONT_REOPEN_PTY) | 2320 | #if defined (DONT_REOPEN_PTY) |
| 2321 | /* In the case that vfork is defined as fork, the parent process | 2321 | /* In the case that vfork is defined as fork, the parent process |
| 2322 | (Emacs) may send some data before the child process completes | 2322 | (Emacs) may send some data before the child process completes |
| 2323 | tty options setup. So we setup tty before forking. */ | 2323 | tty options setup. So we setup tty before forking. */ |
| 2324 | child_setup_tty (forkout); | 2324 | child_setup_tty (forkout); |
| 2325 | #endif /* RTU or UNIPLUS or DONT_REOPEN_PTY */ | 2325 | #endif /* DONT_REOPEN_PTY */ |
| 2326 | #else | 2326 | #else |
| 2327 | forkin = forkout = -1; | 2327 | forkin = forkout = -1; |
| 2328 | #endif /* not USG, or USG_SUBTTY_WORKS */ | 2328 | #endif /* not USG, or USG_SUBTTY_WORKS */ |