From: Richard M. Stallman Date: Tue, 10 Dec 1996 23:27:58 +0000 (+0000) Subject: (Fcall_process_region): Define missing local `count'. X-Git-Tag: emacs-20.1~3285 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d3e81d0a9ea97700ee52b6606dbb629daebb499c;p=emacs.git (Fcall_process_region): Define missing local `count'. --- diff --git a/src/callproc.c b/src/callproc.c index c76c1fd2bcb..5d743d30696 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -633,6 +633,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") struct gcpro gcpro1; Lisp_Object filename_string; register Lisp_Object start, end; + int count = specpdl_ptr - specpdl; #ifdef DOS_NT char *tempfile; char *outf = '\0';