From: Karl Heuer Date: Mon, 1 Jun 1998 20:49:47 +0000 (+0000) Subject: (Fcall_process): Avoid initializer on auto struct. X-Git-Tag: emacs-20.3~757 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=05b44e9027426c791f218f1e9d36d74dde1a2981;p=emacs.git (Fcall_process): Avoid initializer on auto struct. --- 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.") 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) {