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
commit6ef5c4bdda8e696ebfeb78ceba18a20005ab67cb (patch)
treee98cae39721bfb33493099a2be485fb51745c717 /src/alloc.c
parentd473987a4c661029c8fa8a8d9d68e50bee2a7860 (diff)
(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;
}