From: Andreas Schwab Date: Wed, 29 Apr 1998 09:44:06 +0000 (+0000) Subject: (make_window): Initialize last_point field. X-Git-Tag: emacs-20.3~1233 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9d1ec8314f7c46235b5231f860a22d8d3fbe600d;p=emacs.git (make_window): Initialize last_point field. --- diff --git a/src/window.c b/src/window.c index e4ba54a4c68..17861d652af 100644 --- a/src/window.c +++ b/src/window.c @@ -164,6 +164,7 @@ make_window () XSETFASTINT (p->height, 0); XSETFASTINT (p->width, 0); XSETFASTINT (p->hscroll, 0); + XSETFASTINT (p->last_point, 0); XSETFASTINT (p->last_point_x, 0); XSETFASTINT (p->last_point_y, 0); p->start = Fmake_marker ();