summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-09-08 16:59:25 +0000
committerRichard M. Stallman <rms@gnu.org>1995-09-08 16:59:25 +0000
commit02fdfa40b2682df08f79a8a6930568fd1dc7899b (patch)
tree60caab4cc9e6d2c37e202677f6acbf422572606a /src/alloc.c
parent8bb74a463603f415f379f4849b2e236238ea7f0c (diff)
downloademacs-02fdfa40b2682df08f79a8a6930568fd1dc7899b.tar.gz
(Fmake_marker): Initialize insertion_type to 0.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index f372847ba55..791d5168a7a 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -953,6 +953,7 @@ DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
p->buffer = 0;
p->bufpos = 0;
p->chain = Qnil;
+ p->insertion_type = 0;
return val;
}