From: Richard M. Stallman Date: Tue, 15 Nov 1994 00:30:47 +0000 (+0000) Subject: (Finsert_file_contents): Init not_regular at the beginning. X-Git-Tag: emacs-19.34~5934 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=53c34c462d2804a2c3d50479a02b0a4c4d2581d1;p=emacs.git (Finsert_file_contents): Init not_regular at the beginning. --- diff --git a/src/fileio.c b/src/fileio.c index a5028dd7896..317fd1b23e7 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -2725,7 +2725,7 @@ and (2) it puts less data in the undo list.") Lisp_Object handler, val, insval; Lisp_Object p; int total; - int not_regular; + int not_regular = 0; val = Qnil; p = Qnil; @@ -2765,7 +2765,6 @@ and (2) it puts less data in the undo list.") goto notfound; } - not_regular = 0; #ifdef S_IFREG /* This code will need to be changed in order to work on named pipes, and it's probably just not worth it. So we should at