aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-09-08 16:59:25 +0000
committerRichard M. Stallman1995-09-08 16:59:25 +0000
commit6ef5c4bdda8e696ebfeb78ceba18a20005ab67cb (patch)
treee98cae39721bfb33493099a2be485fb51745c717 /src
parentd473987a4c661029c8fa8a8d9d68e50bee2a7860 (diff)
downloademacs-6ef5c4bdda8e696ebfeb78ceba18a20005ab67cb.tar.gz
emacs-6ef5c4bdda8e696ebfeb78ceba18a20005ab67cb.zip
(Fmake_marker): Initialize insertion_type to 0.
Diffstat (limited to 'src')
-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,
953 p->buffer = 0; 953 p->buffer = 0;
954 p->bufpos = 0; 954 p->bufpos = 0;
955 p->chain = Qnil; 955 p->chain = Qnil;
956 p->insertion_type = 0;
956 return val; 957 return val;
957} 958}
958 959