From: Richard M. Stallman Date: Fri, 8 Sep 1995 16:59:25 +0000 (+0000) Subject: (Fmake_marker): Initialize insertion_type to 0. X-Git-Tag: emacs-19.34~2852 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6ef5c4bdda8e696ebfeb78ceba18a20005ab67cb;p=emacs.git (Fmake_marker): Initialize insertion_type to 0. --- 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; }