summaryrefslogtreecommitdiff
path: root/src/fileio.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-11-15 00:30:47 +0000
committerRichard M. Stallman <rms@gnu.org>1994-11-15 00:30:47 +0000
commit53c34c462d2804a2c3d50479a02b0a4c4d2581d1 (patch)
tree7105ab23312e45478d60b85d19da319bec7492d1 /src/fileio.c
parent6746ed7a3362b1ef0283cd0d922058cb86cbb5a0 (diff)
downloademacs-53c34c462d2804a2c3d50479a02b0a4c4d2581d1.tar.gz
(Finsert_file_contents): Init not_regular at the beginning.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c3
1 files changed, 1 insertions, 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