From 53c34c462d2804a2c3d50479a02b0a4c4d2581d1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 15 Nov 1994 00:30:47 +0000 Subject: [PATCH] (Finsert_file_contents): Init not_regular at the beginning. --- src/fileio.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 -- 2.39.5