diff options
| author | Karl Heuer | 1998-06-01 20:49:47 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-06-01 20:49:47 +0000 |
| commit | 05b44e9027426c791f218f1e9d36d74dde1a2981 (patch) | |
| tree | 9fa9385b521b83b8dd8afc789e6468740964e01e /src | |
| parent | 4fa91cfeccea658125751d12980fb545f0921fde (diff) | |
| download | emacs-05b44e9027426c791f218f1e9d36d74dde1a2981.tar.gz emacs-05b44e9027426c791f218f1e9d36d74dde1a2981.zip | |
(Fcall_process): Avoid initializer on auto struct.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c index f93d0160594..4cd7dcfeda1 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -634,7 +634,9 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") | |||
| 634 | int total_read = 0; | 634 | int total_read = 0; |
| 635 | int carryover = 0; | 635 | int carryover = 0; |
| 636 | int display_on_the_fly = !NILP (display) && INTERACTIVE; | 636 | int display_on_the_fly = !NILP (display) && INTERACTIVE; |
| 637 | struct coding_system saved_coding = process_coding; | 637 | struct coding_system saved_coding; |
| 638 | |||
| 639 | saved_coding = process_coding; | ||
| 638 | 640 | ||
| 639 | while (1) | 641 | while (1) |
| 640 | { | 642 | { |