aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index db5ff4b0b50..528cd2e118e 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1045,7 +1045,8 @@ DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
1045 XMISCTYPE (val) = Lisp_Misc_Marker; 1045 XMISCTYPE (val) = Lisp_Misc_Marker;
1046 p = XMARKER (val); 1046 p = XMARKER (val);
1047 p->buffer = 0; 1047 p->buffer = 0;
1048 p->bufpos = 0; 1048 p->bytepos = 0;
1049 p->charpos = 0;
1049 p->chain = Qnil; 1050 p->chain = Qnil;
1050 p->insertion_type = 0; 1051 p->insertion_type = 0;
1051 return val; 1052 return val;