]> code.delx.au - gnu-emacs/commitdiff
(Fcall_process): Avoid initializer on auto struct.
authorKarl Heuer <kwzh@gnu.org>
Mon, 1 Jun 1998 20:49:47 +0000 (20:49 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 1 Jun 1998 20:49:47 +0000 (20:49 +0000)
src/callproc.c

index f93d0160594d75ee1bee8d66e0bb0e60d3a7b325..4cd7dcfeda10b66ec79a24b91b52a5fe72c12e20 100644 (file)
@@ -634,7 +634,9 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
     int total_read = 0;
     int carryover = 0;
     int display_on_the_fly = !NILP (display) && INTERACTIVE;
-    struct coding_system saved_coding = process_coding;
+    struct coding_system saved_coding;
+
+    saved_coding = process_coding;
 
     while (1)
       {