field of new marker (for sanity and safety).
+2013-08-29 Dmitry Antipov <dmantipov@yandex.ru>
+
+ * alloc.c (Fmake_marker, build_marker): Zero need_adjustment
+ field of new marker (for sanity and safety).
+
2013-08-29 Dmitry Antipov <dmantipov@yandex.ru>
* xterm.c (x_clear_area): Lost 7th arg because it is always False.
p->charpos = 0;
p->next = NULL;
p->insertion_type = 0;
+ p->need_adjustment = 0;
return val;
}
m->charpos = charpos;
m->bytepos = bytepos;
m->insertion_type = 0;
+ m->need_adjustment = 0;
m->next = BUF_MARKERS (buf);
BUF_MARKERS (buf) = m;
return obj;