diff options
| author | Joseph Arceneaux | 1992-06-05 18:39:41 +0000 |
|---|---|---|
| committer | Joseph Arceneaux | 1992-06-05 18:39:41 +0000 |
| commit | 508b171c56cb7337cc96fd68528a226e2bdb9f5d (patch) | |
| tree | d76a8336fc5d45b68bb060ebc6176b3b223d2f18 /src/process.c | |
| parent | c0a58692dac8783c9a4cb153a113f9fb6b72fb8e (diff) | |
| download | emacs-508b171c56cb7337cc96fd68528a226e2bdb9f5d.tar.gz emacs-508b171c56cb7337cc96fd68528a226e2bdb9f5d.zip | |
*** empty log message ***
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index cc20336dd30..2265c2c34db 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2108,7 +2108,7 @@ send_process (proc, buf, len) | |||
| 2108 | /* Don't send more than 500 bytes at a time. */ | 2108 | /* Don't send more than 500 bytes at a time. */ |
| 2109 | if (this > 500) | 2109 | if (this > 500) |
| 2110 | this = 500; | 2110 | this = 500; |
| 2111 | old_sigpipe = signal (SIGPIPE, send_process_trap); | 2111 | old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap); |
| 2112 | rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, this); | 2112 | rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, this); |
| 2113 | signal (SIGPIPE, old_sigpipe); | 2113 | signal (SIGPIPE, old_sigpipe); |
| 2114 | if (rv < 0) | 2114 | if (rv < 0) |