diff options
| author | Andreas Schwab | 2005-05-22 09:35:04 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2005-05-22 09:35:04 +0000 |
| commit | edceb51cbc80e88ca6c53837daf1e6a0c4d5de26 (patch) | |
| tree | 1e18299e572a284a558dc10340b298a1022ace2b /src | |
| parent | 5c213fcc8641d0b01fb84fe965f5aeecc9eef392 (diff) | |
| download | emacs-edceb51cbc80e88ca6c53837daf1e6a0c4d5de26.tar.gz emacs-edceb51cbc80e88ca6c53837daf1e6a0c4d5de26.zip | |
(send_process): Remove misplaced volatile.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/process.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ff5cf7a32d2..c14391dce5c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-05-22 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * process.c (send_process): Remove misplaced volatile. | ||
| 4 | |||
| 1 | 2005-05-21 Richard M. Stallman <rms@gnu.org> | 5 | 2005-05-21 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * xdisp.c (display_mode_element): If we're processing a list and | 7 | * xdisp.c (display_mode_element): If we're processing a list and |
diff --git a/src/process.c b/src/process.c index db7d9350821..db13406606d 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -5134,7 +5134,7 @@ send_process (proc, buf, len, object) | |||
| 5134 | int rv; | 5134 | int rv; |
| 5135 | struct coding_system *coding; | 5135 | struct coding_system *coding; |
| 5136 | struct gcpro gcpro1; | 5136 | struct gcpro gcpro1; |
| 5137 | volatile SIGTYPE (*old_sigpipe)(); | 5137 | SIGTYPE (*old_sigpipe) (); |
| 5138 | 5138 | ||
| 5139 | GCPRO1 (object); | 5139 | GCPRO1 (object); |
| 5140 | 5140 | ||